diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-08-12 17:33:57 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-08-12 17:33:57 +1000 |
commit | ae0e1baf6810253cbd1cfc0560334cd20148c8f5 (patch) | |
tree | 42ae7813f66840c734f83d5b262aa614373a7e87 /src/Java | |
parent | af7c79eeb6b7b1dec697539ee8bc2a169cc88516 (diff) | |
download | GT5-Unofficial-ae0e1baf6810253cbd1cfc0560334cd20148c8f5.tar.gz GT5-Unofficial-ae0e1baf6810253cbd1cfc0560334cd20148c8f5.tar.bz2 GT5-Unofficial-ae0e1baf6810253cbd1cfc0560334cd20148c8f5.zip |
$ Fixed a small mistake in the Advanced Boilers.
- Removed Blast Furnace requirement of Eglin Steel.
Diffstat (limited to 'src/Java')
-rw-r--r-- | src/Java/gtPlusPlus/core/material/ALLOY.java | 2 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/material/ALLOY.java b/src/Java/gtPlusPlus/core/material/ALLOY.java index 63ceb2e272..09111b2408 100644 --- a/src/Java/gtPlusPlus/core/material/ALLOY.java +++ b/src/Java/gtPlusPlus/core/material/ALLOY.java @@ -531,7 +531,7 @@ public final class ALLOY { 1973, //Boiling Point in C -1, -1, - true, //Uses Blast furnace? + false, //Uses Blast furnace? //Material Stacks with Percentage of required elements. new MaterialStack[]{ new MaterialStack(ALLOY.EGLIN_STEEL_BASE, 10), diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java index d90957bcd2..f336d2e11a 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java @@ -27,7 +27,7 @@ public class GT_MetaTileEntity_Boiler_Base extends GT_MetaTileEntity_Boiler { public GT_MetaTileEntity_Boiler_Base(int aID, String aNameRegional, int aBoilerTier) { super(aID, "electricboiler." + aBoilerTier + ".tier.single", aNameRegional, - "Produces " + (750 + (250 * aBoilerTier)) + "L of Steam per second"); + "Produces " + (750 * aBoilerTier) + "L of Steam per second"); this.mSteamPerSecond = (750 * aBoilerTier); this.mPollutionPerSecond = 20 + (15 * aBoilerTier); this.mBoilerTier = aBoilerTier; @@ -35,7 +35,7 @@ public class GT_MetaTileEntity_Boiler_Base extends GT_MetaTileEntity_Boiler { public GT_MetaTileEntity_Boiler_Base(String aName, int aTier, String aDescription, ITexture[][][] aTextures) { super(aName, aTier, aDescription, aTextures); - this.mSteamPerSecond = (750 * aBoilerTier); + this.mSteamPerSecond = (750 * aTier); this.mPollutionPerSecond = 20 + (15 * aTier); this.mBoilerTier = aTier; } |