diff options
author | bot <krampus.sack.never@gmail.com> | 2020-06-12 20:23:26 +0000 |
---|---|---|
committer | bot <krampus.sack.never@gmail.com> | 2020-06-12 20:23:26 +0000 |
commit | b65e1f3307b23c7d0548ef16d2c8a2b7129ebfce (patch) | |
tree | 52d4a7b6979eeb644c7c659bf244c273b9d7f394 | |
parent | bc0b4b644dd410c86c925c7ef2422bd18789437c (diff) | |
download | GT5-Unofficial-b65e1f3307b23c7d0548ef16d2c8a2b7129ebfce.tar.gz GT5-Unofficial-b65e1f3307b23c7d0548ef16d2c8a2b7129ebfce.tar.bz2 GT5-Unofficial-b65e1f3307b23c7d0548ef16d2c8a2b7129ebfce.zip |
fix hatches counting as casing
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java index 8699393ca2..823edbedcc 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java @@ -503,7 +503,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase { if (aTileEntity != null) { if (this.addToMachineList(aTileEntity)) { - tAmount++; + continue; } else { final IMetaTileEntity aMetaTileEntity = aTileEntity.getMetaTileEntity(); |