From f2c5d062d02ef1fa80752baf17ba37b783e90323 Mon Sep 17 00:00:00 2001 From: Steelux <70096037+Steelux8@users.noreply.github.com> Date: Mon, 28 Mar 2022 21:33:25 +0100 Subject: Super Glue Fixes (#161) - Reworked recipe EU/t and casing tiers to divide the Chemical Plant recipes evenly between 3 tiers. The purpose of this change is to make it so this line can be automated with 3 plants, one of each kind; - Changed Chemical Plant's minimum base outside casings to allow some more hatches before the multi fails to form. It's a large, smart multiblock with many casings that are never replaced with hatches, so I believe the amount of allowed hatches at once should be increased; - A few fixes for recipes that were missing, or implemented incorrectly. --- .../machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common') 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 daad2f50da..ca1757f98f 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 @@ -334,7 +334,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase= 80) { + if (checkPiece(mName, 3, 6, 0) && mCasing >= 70) { for (int i = 0; i < 8; i++) { if (checkCasing[i] == mCasing) { mSolidCasingTier = i; -- cgit