aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities/automation
diff options
context:
space:
mode:
authorbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2018-09-08 00:39:04 +0200
committerbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2018-09-08 00:39:04 +0200
commitb7c66bf2094dd2f03d92919c18fec9dfb04264e6 (patch)
treea767c60069d7a517b09833c896cc2de849e46498 /src/main/java/gregtech/common/tileentities/automation
parent65d3cf01f28a275d186d34f5771e2ec72ccd975d (diff)
downloadGT5-Unofficial-b7c66bf2094dd2f03d92919c18fec9dfb04264e6.tar.gz
GT5-Unofficial-b7c66bf2094dd2f03d92919c18fec9dfb04264e6.tar.bz2
GT5-Unofficial-b7c66bf2094dd2f03d92919c18fec9dfb04264e6.zip
Various fixes
+Added GT-FML-Log +Added an Exception if a Nq reactor without recipe map is created +Added the ability to add ReinforcedGlass in the CleanroomWalls (https://github.com/GTNewHorizons/NewHorizons/issues/3584) +Added a config option for changing the ReinforcedGlass percentage +Renamed Materials2 -> GTNH_ExtraMaterials and fixed it
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/automation')
-rw-r--r--src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_ChestBuffer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_ChestBuffer.java b/src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_ChestBuffer.java
index e73631cd93..d11b1f2f81 100644
--- a/src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_ChestBuffer.java
+++ b/src/main/java/gregtech/common/tileentities/automation/GT_MetaTileEntity_ChestBuffer.java
@@ -101,7 +101,7 @@ public class GT_MetaTileEntity_ChestBuffer
String displayName1 = o1.getDisplayName();
String displayName2 = o2.getDisplayName();
int result = displayName1.compareToIgnoreCase(displayName2);
- //System.out.println("sorter: " + displayName1 + " " + displayName2 + " " + result);
+ //GT_FML_LOGGER.info("sorter: " + displayName1 + " " + displayName2 + " " + result);
return result;
} else
{
@@ -134,11 +134,11 @@ public class GT_MetaTileEntity_ChestBuffer
sortStacks();
// Merge small stacks together
for (int i = 0; i < this.mInventory.length-1;) {
- //System.out.println( (this.mInventory[i] == null) ? "Slot empty " + i : "Slot " + i + " holds " + this.mInventory[i].getDisplayName());
+ //GT_FML_LOGGER.info( (this.mInventory[i] == null) ? "Slot empty " + i : "Slot " + i + " holds " + this.mInventory[i].getDisplayName());
for (int j = i + 1; j < this.mInventory.length; j++) {
if ((this.mInventory[j] != null) && ((GT_Utility.areStacksEqual(this.mInventory[i], this.mInventory[j])))) {
GT_Utility.moveStackFromSlotAToSlotB(getBaseMetaTileEntity(), getBaseMetaTileEntity(), j, i, (byte) 64, (byte) 1, (byte) 64, (byte) 1);
- //System.out.println( "Moving slot " + j + " into slot " + i );
+ //GT_FML_LOGGER.info( "Moving slot " + j + " into slot " + i );
}
else {
i=j;