diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-10 15:28:40 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-10 15:28:40 +1000 |
commit | a5ab04af307c9ff03a47461afeadc5256d97fd89 (patch) | |
tree | 7161e9defb86820c4ae4457ba00fa827bf4ed083 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities | |
parent | a56a7c295a6a2b8f3cbaf0d517ac740eda70b485 (diff) | |
download | GT5-Unofficial-a5ab04af307c9ff03a47461afeadc5256d97fd89.tar.gz GT5-Unofficial-a5ab04af307c9ff03a47461afeadc5256d97fd89.tar.bz2 GT5-Unofficial-a5ab04af307c9ff03a47461afeadc5256d97fd89.zip |
[1.4.6.1-release]
% Bumped Version.
% Cleaned up Dev. Code and disabled a few components for a new public release.
% Changed some internal code related to blocks, GT casings from GT++ should now handle better.
- Removed Processing_HotIngots.java
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java index 2cd7164fe1..6fa5b9fcac 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityMassFabricator.java @@ -150,12 +150,12 @@ public class GregtechMetaTileEntityMassFabricator extends GT_MetaTileEntity_Mult mMatterProduced++; mAmplifierUsed++; updateSlots(); - Utils.LOG_INFO("Recipes Finished: "+mMatterProduced); + //Utils.LOG_INFO("Recipes Finished: "+mMatterProduced); return true; } } else { - Utils.LOG_INFO("Invalid Recipe"); + //Utils.LOG_INFO("Invalid Recipe"); return false; } } @@ -185,7 +185,7 @@ public class GregtechMetaTileEntityMassFabricator extends GT_MetaTileEntity_Mult ArrayUtils.reverse(mOutputFluids); mMatterProduced++; updateSlots(); - Utils.LOG_INFO("Recipes Finished: "+mMatterProduced); + //Utils.LOG_INFO("Recipes Finished: "+mMatterProduced); return true; } } |