From 79ba91d579447271e6f88e5b3eb2f991f6bba040 Mon Sep 17 00:00:00 2001 From: Fiyorin ᵘʷᵘ <61357+Fiyorin@users.noreply.github.com> Date: Tue, 23 May 2023 07:56:03 +0200 Subject: Arc Furnace: Fix Blockrenderer Preview (#636) * ExxonMobile Chemical Plant: Fix the Blockrenderer Structure Preview this makes it suggest to use only 1 Catalyst Housing. the multi can still form with 0 or multiple housings. recipes that require catalysts only work with 1 housing. * ExxonMobile Chemical Plant: Fix the Blockrenderer Structure Preview this makes it suggest to use only 1 Catalyst Housing. the multi can still form with 0 or multiple housings. recipes that require catalysts only work with 1 housing. * Merge remote-tracking branch 'origin/master' * Update GregtechMTE_ChemicalPlant.java * Arc Furnace: Fix Blockrenderer Preview * Arc Furnace: Fix Blockrenderer Preview * Merge remote-tracking branch 'origin/fixarcfurnace' into fixarcfurnace --------- Co-authored-by: Fiyorin Co-authored-by: Martin Robertz --- .../multi/processing/GregtechMetaTileEntity_IndustrialArcFurnace.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialArcFurnace.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialArcFurnace.java index c0697b0431..aca2826c4a 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialArcFurnace.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialArcFurnace.java @@ -163,13 +163,11 @@ public class GregtechMetaTileEntity_IndustrialArcFurnace extends return mCasing >= 10 && checkHatch(); } mCasing = 0; - clearHatches(); if (checkPiece(mName + "5", 2, 2, 0)) { mSize = 5; return mCasing >= 10 && checkHatch(); } mCasing = 0; - clearHatches(); if (checkPiece(mName + "7", 3, 3, 0)) { mSize = 7; return mCasing >= 10 && checkHatch(); -- cgit