aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities
diff options
context:
space:
mode:
authorBlood-Asp <bloodasphendrik@gmail.com>2016-09-27 02:00:19 +0200
committerTechnus <daniel112092@gmail.com>2016-10-02 15:15:44 +0200
commit7718e97e09f898054f0cdab6ee44983da78203c0 (patch)
tree921648ef0fc6bcdcd425f139d6bc1f3641da3f25 /src/main/java/gregtech/common/tileentities
parent994896d763b5dd69a913fb7a30b538e8fefdd2ca (diff)
downloadGT5-Unofficial-7718e97e09f898054f0cdab6ee44983da78203c0.tar.gz
GT5-Unofficial-7718e97e09f898054f0cdab6ee44983da78203c0.tar.bz2
GT5-Unofficial-7718e97e09f898054f0cdab6ee44983da78203c0.zip
Pollution bloodasp1
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java
index 00668ffba8..38a1425a3e 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java
@@ -51,7 +51,7 @@ public class GT_MetaTileEntity_DistillationTower
"1x Output Bus (Any bottom layer casing)",
"1x Maintenance Hatch (Any casing)",
"1x Energy Hatch (Any casing)",
- "Clean Stainless Steel Casings for the rest (26 at least!)"};
+ "Clean Stainless Steel Casings for the rest (36 at least!)"};
}
public ITexture[] getTexture(IGregTechTileEntity aBaseMetaTileEntity, byte aSide, byte aFacing, byte aColorIndex, boolean aActive, boolean aRedstone) {
@@ -172,7 +172,8 @@ public class GT_MetaTileEntity_DistillationTower
for (int i = 0; i < tmpHatches.length; i++) {
this.mOutputHatches.add(tmpHatches[i]);
}
- return tAmount >= 26;
+ if(this.mMaintenanceHatches.size()!=1)return false;
+ return tAmount >= 36;
}
public boolean ignoreController(Block tTileEntity) {