aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2020-10-13 18:32:34 +0200
committerGitHub <noreply@github.com>2020-10-13 18:32:34 +0200
commitfdc8b6958866e22954fb2f60ef571f0ddcefde88 (patch)
tree09ce31773eb8d12e8af779d426f58f906af78959 /src/main
parenteb0c41fbdab1ad0d120a4928042bd06fc51da015 (diff)
parente9cb18cb188cc41baee5c12a917eeaa7956416dc (diff)
downloadGT5-Unofficial-fdc8b6958866e22954fb2f60ef571f0ddcefde88.tar.gz
GT5-Unofficial-fdc8b6958866e22954fb2f60ef571f0ddcefde88.tar.bz2
GT5-Unofficial-fdc8b6958866e22954fb2f60ef571f0ddcefde88.zip
Merge pull request #94 from Prometheus0000/MDT-height-change
Change max height to 56 Former-commit-id: e272195b3fb54097b6ceacede522a59c3edba774
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaDistillTower.java6
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
+}