diff options
| author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2018-09-08 17:24:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-08 17:24:41 +0200 |
| commit | 2aeb6e2ca7fb090d2392490aff6d6f87be48fd19 (patch) | |
| tree | 44b5519227abe05557e01dc8645b3ff4f4e7d1ed /src/main/java/gregtech/common/tileentities/storage | |
| parent | 65d3cf01f28a275d186d34f5771e2ec72ccd975d (diff) | |
| parent | fde7ce4cf096684e3af0b88f9af0c062a2068981 (diff) | |
| download | GT5-Unofficial-2aeb6e2ca7fb090d2392490aff6d6f87be48fd19.tar.gz GT5-Unofficial-2aeb6e2ca7fb090d2392490aff6d6f87be48fd19.tar.bz2 GT5-Unofficial-2aeb6e2ca7fb090d2392490aff6d6f87be48fd19.zip | |
Merge pull request #147 from GTNewHorizons/bartimaeusnek-fixes
Various fixes
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/storage')
| -rw-r--r-- | src/main/java/gregtech/common/tileentities/storage/GT_MetaTileEntity_SuperChest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/tileentities/storage/GT_MetaTileEntity_SuperChest.java b/src/main/java/gregtech/common/tileentities/storage/GT_MetaTileEntity_SuperChest.java index 448d2443e5..5b4e5549c3 100644 --- a/src/main/java/gregtech/common/tileentities/storage/GT_MetaTileEntity_SuperChest.java +++ b/src/main/java/gregtech/common/tileentities/storage/GT_MetaTileEntity_SuperChest.java @@ -110,9 +110,9 @@ public class GT_MetaTileEntity_SuperChest extends GT_MetaTileEntity_TieredMachin public void onPostTick(IGregTechTileEntity aBaseMetaTileEntity, long aTimer) { if (getBaseMetaTileEntity().isServerSide() && getBaseMetaTileEntity().isAllowedToWork()) { -// if(mInventory[0]!=null)System.out.println("input: "+mInventory[0].stackSize); -// System.out.println("store: "+mItemCount); -// if(mInventory[0]!=null)System.out.println("output: "+mInventory[2].stackSize); +// if(mInventory[0]!=null)GT_FML_LOGGER.info("input: "+mInventory[0].stackSize); +// GT_FML_LOGGER.info("store: "+mItemCount); +// if(mInventory[0]!=null)GT_FML_LOGGER.info("output: "+mInventory[2].stackSize); if ((getItemCount() <= 0)) { this.mItemStack = null; this.mItemCount = 0; |
