diff options
author | Tom Dickson <github@bombcar.com> | 2021-11-24 11:29:53 -0600 |
---|---|---|
committer | Tom Dickson <github@bombcar.com> | 2021-11-24 11:29:53 -0600 |
commit | bd52195d37d390a23646272bd7bed1b5f6fa92e6 (patch) | |
tree | 5e3d63bdda56b2289522262ab7a3ffeeb10f055e /src/Java/gtPlusPlus/xmod | |
parent | 9f5163d0a18c4ba4f4046effb87e90d285242ee6 (diff) | |
download | GT5-Unofficial-bd52195d37d390a23646272bd7bed1b5f6fa92e6.tar.gz GT5-Unofficial-bd52195d37d390a23646272bd7bed1b5f6fa92e6.tar.bz2 GT5-Unofficial-bd52195d37d390a23646272bd7bed1b5f6fa92e6.zip |
fix red here also
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java index bb22297b28..bcf76964d2 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java @@ -444,8 +444,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase { private int getCasingTextureID() { // Check the Tier Client Side int aTier = mSolidCasingTier; - int aCasingID = getCasingTextureIdForTier(aTier); - return aCasingID; + return getCasingTextureIdForTier(aTier); } public boolean addToMachineList(IGregTechTileEntity aTileEntity) { @@ -583,9 +582,6 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase { //GT_Recipe tRecipe = findRecipe(getBaseMetaTileEntity(), mLastRecipe, false, gregtech.api.enums.GT_Values.V[tTier], aFluidInputs, aItemInputs); GT_Recipe tRecipe = findRecipe(mLastRecipe, gregtech.api.enums.GT_Values.V[tTier], getSolidCasingTier(), aItemInputs, aFluidInputs); - - - if (tRecipe == null) { log("BAD RETURN - 1"); return false; |