diff options
author | Alkalus <Draknyte1@hotmail.com> | 2020-05-26 19:28:03 +0100 |
---|---|---|
committer | Alkalus <Draknyte1@hotmail.com> | 2020-05-26 19:28:03 +0100 |
commit | 0b64ce224c2e3dc93d13d968a9094ebcb4903de6 (patch) | |
tree | 891fdba2cd8bf035ef3636a53d4bc6da996a2147 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities | |
parent | 92b8261907b3800d4468c1dc546eccc4e158c224 (diff) | |
download | GT5-Unofficial-0b64ce224c2e3dc93d13d968a9094ebcb4903de6.tar.gz GT5-Unofficial-0b64ce224c2e3dc93d13d968a9094ebcb4903de6.tar.bz2 GT5-Unofficial-0b64ce224c2e3dc93d13d968a9094ebcb4903de6.zip |
+ Added new Volumetric Flasks.
% Updated GT to reflect required change for additional Volumetric Flasks.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 3 |
1 files changed, 0 insertions, 3 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 7fd89c481a..0883647c3d 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 @@ -749,7 +749,6 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase { markDirty(); } } - Logger.INFO("SolidCasingTier: "+mSolidCasingTier); super.onPostTick(aBaseMetaTileEntity, aTick); } @@ -1046,11 +1045,9 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase { for (int aTier : mTieredBlockRegistry.keySet()) { Triplet<Block, Integer, Integer> aData = mTieredBlockRegistry.get(aTier); if (aData.getValue_1() == aInitStructureCheck && aData.getValue_2() == aInitStructureCheckMeta) { - Logger.INFO("Found Tier information for "+aTier); return aTier; } } - Logger.INFO("Could not find tier info for "+aInitStructureCheck.getLocalizedName()+"|"+aInitStructureCheckMeta); return 0; } catch (Throwable t) { |