diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-08-18 15:24:14 +0100 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-08-18 15:24:14 +0100 |
commit | 2f07ff2028f1bb298a920a43c741090643bf980c (patch) | |
tree | 1b1e9342ec32f034450e2e7330e615f39fa55b1a /src/Java/gtPlusPlus/xmod/gregtech/common | |
parent | 66b3ff1d73059700673c6c1c546a4a52dd69dafe (diff) | |
download | GT5-Unofficial-2f07ff2028f1bb298a920a43c741090643bf980c.tar.gz GT5-Unofficial-2f07ff2028f1bb298a920a43c741090643bf980c.tar.bz2 GT5-Unofficial-2f07ff2028f1bb298a920a43c741090643bf980c.zip |
- Removed Maint. requirement from the PSS. Fixes #440.
$ Fixed 9 in 1 issues. Fixes #495. Closes #460.
% Adjusted PSS Tooltip.
> Added higher tier support to PSS last commit, Closes #519.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java index 618d02b9ad..dda1a6b0c0 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java @@ -66,6 +66,7 @@ public class GregtechMetaTileEntity_PowerSubStationController extends GregtechMe return new String[]{ "[BUG] GUI does not work until structure is assembled correctly. (Do Not Report issue)", "Consumes " + this.ENERGY_TAX + "% of the average voltage of all energy type hatches", + "Does not require maintenance", "Can be built with variable height between " + (CELL_HEIGHT_MIN + 2) + "-" + (CELL_HEIGHT_MAX + 2) + "", "Hatches can be placed nearly anywhere", "HV Energy/Dynamo Hatches are the lowest tier you can use", @@ -302,7 +303,7 @@ public class GregtechMetaTileEntity_PowerSubStationController extends GregtechMe } // Only set this here, after the machine check is 100% passed. - + this.fixAllMaintenanceIssue(); this.mBatteryCapacity = getCapacityFromCellTier(tOverallCellTier) * tCellCount; return true; } @@ -376,6 +377,7 @@ public class GregtechMetaTileEntity_PowerSubStationController extends GregtechMe this.mMaxProgresstime = 1; this.mEUt = 0; this.mEfficiencyIncrease = 10000; + this.fixAllMaintenanceIssue(); return true; } |