diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2016-09-27 02:00:19 +0200 |
---|---|---|
committer | Blood-Asp <bloodasphendrik@gmail.com> | 2016-09-27 02:00:19 +0200 |
commit | 16fb901529b24d4d1d4aaf64984b72de75fda0c5 (patch) | |
tree | 684287e90b9278e777fb6f8c894a7259e55b4e81 /src/main/java/gregtech/common/tileentities/machines/multi | |
parent | 97d7efcc22b3c05f8631188bad33099cd4ce8c6b (diff) | |
download | GT5-Unofficial-16fb901529b24d4d1d4aaf64984b72de75fda0c5.tar.gz GT5-Unofficial-16fb901529b24d4d1d4aaf64984b72de75fda0c5.tar.bz2 GT5-Unofficial-16fb901529b24d4d1d4aaf64984b72de75fda0c5.zip |
More Pollution & bugfixes
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines/multi')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java | 5 |
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 493f4407b4..246df6707c 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 @@ -46,7 +46,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) { @@ -174,7 +174,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) { |