diff options
author | Maxim <maxim235@gmx.de> | 2023-02-19 15:45:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 15:45:14 +0100 |
commit | ec964ddec3acfe35f37c819093cd3f233beaf06d (patch) | |
tree | f8256243c96b5261f0158c8e44e7a4274d851ab4 | |
parent | 73bc91ef034e4a15df0c73f336243081a1a28c1f (diff) | |
download | GT5-Unofficial-ec964ddec3acfe35f37c819093cd3f233beaf06d.tar.gz GT5-Unofficial-ec964ddec3acfe35f37c819093cd3f233beaf06d.tar.bz2 GT5-Unofficial-ec964ddec3acfe35f37c819093cd3f233beaf06d.zip |
Fixed coil level not properly resetting (#548)
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java index bdb1b4bda6..c518c75054 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java @@ -353,6 +353,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase<Gregt mPipeCasingTier = 0; mCoilTier = 0; mCatalystBuses.clear(); + setCoilMeta(HeatingCoilLevel.None); if (checkPiece(mName, 3, 6, 0) && mCasing >= 70) { for (int i = 0; i < 8; i++) { if (checkCasing[i] == mCasing) { |