aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities
diff options
context:
space:
mode:
authorAlkalus <Draknyte1@hotmail.com>2020-05-26 19:28:03 +0100
committerAlkalus <Draknyte1@hotmail.com>2020-05-26 19:28:03 +0100
commit0b64ce224c2e3dc93d13d968a9094ebcb4903de6 (patch)
tree891fdba2cd8bf035ef3636a53d4bc6da996a2147 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities
parent92b8261907b3800d4468c1dc546eccc4e158c224 (diff)
downloadGT5-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.java3
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) {