aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/common
diff options
context:
space:
mode:
authorFiyorin ᵘʷᵘ <61357+Fiyorin@users.noreply.github.com>2023-05-23 07:56:03 +0200
committerGitHub <noreply@github.com>2023-05-23 07:56:03 +0200
commit79ba91d579447271e6f88e5b3eb2f991f6bba040 (patch)
tree515ac1c7be9e77646489aecc6f0512c9d2b9dc80 /src/main/java/gtPlusPlus/xmod/gregtech/common
parent191d42fca5577d7fbcdac0bb172ea3be83020970 (diff)
downloadGT5-Unofficial-79ba91d579447271e6f88e5b3eb2f991f6bba040.tar.gz
GT5-Unofficial-79ba91d579447271e6f88e5b3eb2f991f6bba040.tar.bz2
GT5-Unofficial-79ba91d579447271e6f88e5b3eb2f991f6bba040.zip
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 <david@bitmail.cc> Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialArcFurnace.java2
1 files changed, 0 insertions, 2 deletions
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();