diff options
author | Prometheus0000 <prometheus0000000@gmail.com> | 2020-09-15 17:40:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 17:40:13 -0400 |
commit | e9cb18cb188cc41baee5c12a917eeaa7956416dc (patch) | |
tree | a7938f683dc2927e0b2b9b42fdef1ace71087ffa | |
parent | f26cf3293d8ececb052585326c82121c82a16e40 (diff) | |
download | GT5-Unofficial-e9cb18cb188cc41baee5c12a917eeaa7956416dc.tar.gz GT5-Unofficial-e9cb18cb188cc41baee5c12a917eeaa7956416dc.tar.bz2 GT5-Unofficial-e9cb18cb188cc41baee5c12a917eeaa7956416dc.zip |
Change max height to 56
Since 5x11(max DT outputs)=55+1(for bottom)=56. Unless I'm missing something. Or did it wrong.
Former-commit-id: 1f5f8399bd20dc97dd7215d5128257358ff7691e
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaDistillTower.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaDistillTower.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaDistillTower.java index 33434bb9d6..61abca42ec 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaDistillTower.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaDistillTower.java @@ -65,7 +65,7 @@ public class GT_TileEntity_MegaDistillTower extends GT_MetaTileEntity_Distillati public String[] getDescription() { return new String[]{ "Controller Block for the Mega Distillation Tower", - "Size(WxHxD): 15xhx15 (Hollow), with h ranging from 16 to 61", + "Size(WxHxD): 15xhx15 (Hollow), with h ranging from 16 to 56", "Controller (Front bottom)", "1+ Input Hatch (Any bottom layer casing)", "1+ Output Bus (Any bottom layer casing)", @@ -135,7 +135,7 @@ public class GT_TileEntity_MegaDistillTower extends GT_MetaTileEntity_Distillati } } - return casingAmount >= 15 * y - 5 && y >= 16 && y <= 61 && reachedTop; + return casingAmount >= 15 * y - 5 && y >= 16 && y <= 56 && reachedTop; } @Override @@ -256,4 +256,4 @@ public class GT_TileEntity_MegaDistillTower extends GT_MetaTileEntity_Distillati public boolean drainEnergyInput(long aEU) { return MegaUtils.drainEnergyMegaVanilla(this, aEU); } -}
\ No newline at end of file +} |