diff options
| author | Jordan Byrne <draknyte1@hotmail.com> | 2018-05-13 22:18:00 +1000 |
|---|---|---|
| committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-05-13 22:18:00 +1000 |
| commit | 1219b40486ad2dd7925be929413e5eccaa30519d (patch) | |
| tree | 639ba2885448b7fad5f38b4fe69c1d2a99474d5d /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators | |
| parent | c98850678bb61dd136562751138c8f6c7d124eed (diff) | |
| download | GT5-Unofficial-1219b40486ad2dd7925be929413e5eccaa30519d.tar.gz GT5-Unofficial-1219b40486ad2dd7925be929413e5eccaa30519d.tar.bz2 GT5-Unofficial-1219b40486ad2dd7925be929413e5eccaa30519d.zip | |
% Book work.
% Improved the way that custom scanner info is added to GT++ multiblocks.
$ Fixed annoying single block boiler logging.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java index 0ec3ce53b2..179e75d3e7 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_Boiler_Base.java @@ -201,14 +201,14 @@ public class GT_MetaTileEntity_Boiler_Base extends GT_MetaTileEntity_Boiler { @Override public void onPostTick(IGregTechTileEntity aBaseMetaTileEntity, long aTick) { if ((aBaseMetaTileEntity.isServerSide()) && (aTick > 20L)) { - // Utils.LOG_INFO("Ticking Boiler"); + // Utils.LOG_MACHINE_INFO("Ticking Boiler"); //if (aTick % 60L == 0L) { - // Utils.LOG_INFO("Temp:"+this.mTemperature); - // Utils.LOG_INFO("getCapacity():"+this.getCapacity()); - // Utils.LOG_INFO("maxProgresstime():"+this.maxProgresstime()); - // Utils.LOG_INFO("mSteamPerSecond:"+this.mSteamPerSecond); - // Utils.LOG_INFO("mProcessingEnergy:"+this.mProcessingEnergy); + // Utils.LOG_MACHINE_INFO("Temp:"+this.mTemperature); + // Utils.LOG_MACHINE_INFO("getCapacity():"+this.getCapacity()); + // Utils.LOG_MACHINE_INFO("maxProgresstime():"+this.maxProgresstime()); + // Utils.LOG_MACHINE_INFO("mSteamPerSecond:"+this.mSteamPerSecond); + // Utils.LOG_MACHINE_INFO("mProcessingEnergy:"+this.mProcessingEnergy); //} if (this.mTemperature <= 20) { @@ -247,7 +247,7 @@ public class GT_MetaTileEntity_Boiler_Base extends GT_MetaTileEntity_Boiler { return; } this.mFluid.amount -= (10 * this.mBoilerTier); - // Utils.LOG_INFO("Draining "+(10*this.mBoilerTier)+"L + // Utils.LOG_MACHINE_INFO("Draining "+(10*this.mBoilerTier)+"L // of water. There is "+this.mFluid.amount+"L left."); if (this.mSteam == null) { this.mSteam = GT_ModHandler.getSteam((this.mSteamPerSecond)); @@ -272,7 +272,7 @@ public class GT_MetaTileEntity_Boiler_Base extends GT_MetaTileEntity_Boiler { if ((this.mProcessingEnergy <= 0) && (aBaseMetaTileEntity.isAllowedToWork()) && (fuelSlot != null)) { if (isInputFuelItem(fuelSlot) && (this.mTemperature < (maxProgresstime() - 250))) { - Logger.INFO("Current Heat:" + this.mTemperature + "/" + (maxProgresstime() - 250) + Logger.MACHINE_INFO("Current Heat:" + this.mTemperature + "/" + (maxProgresstime() - 250) + " Burning fuel because not yet at a suitable temp."); useInputFuelItem(aBaseMetaTileEntity, fuelSlot); } @@ -280,12 +280,12 @@ public class GT_MetaTileEntity_Boiler_Base extends GT_MetaTileEntity_Boiler { } if ((this.mTemperature < maxProgresstime()) && (this.mProcessingEnergy > 0) && (aTick % 10L == 0L)) { - // Utils.LOG_INFO("Adding +1 Temp."); + // Utils.LOG_MACHINE_INFO("Adding +1 Temp."); this.mProcessingEnergy -= 2; this.mTemperature += 1; } if (this.mProcessingEnergy > 0 && (aTick % 20L == 0L)) { - // Utils.LOG_INFO("Current Temp is at: "+this.mTemperature+"C"); + // Utils.LOG_MACHINE_INFO("Current Temp is at: "+this.mTemperature+"C"); // GT_Pollution.addPollution(getBaseMetaTileEntity(), // this.mPollutionPerSecond); } |
