From 5267969156d30b4bb5f4cb2279ebb49db6bd40e2 Mon Sep 17 00:00:00 2001 From: Glease <4586901+Glease@users.noreply.github.com> Date: Mon, 29 Aug 2022 16:54:40 +0800 Subject: fix chemical plant consuming catalyst even with awakened draconium coil (#316) --- .../machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines') 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 ffcc144046..77916eb9f4 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 @@ -931,7 +931,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase= 11 && this.mPipeCasingTier >= 4) { + if (this.mCoilTier >= 10 && this.mPipeCasingTier >= 4) { log("not consuming catalyst"); } else if (MathUtils.randFloat(0, 10000000)/10000000f < (1.2f - (0.2 * this.mPipeCasingTier))) { -- cgit