diff options
Diffstat (limited to 'src/Java/gtPlusPlus/core/inventories')
| -rw-r--r-- | src/Java/gtPlusPlus/core/inventories/InventoryFishTrap.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/inventories/InventoryFishTrap.java b/src/Java/gtPlusPlus/core/inventories/InventoryFishTrap.java index ca6d006740..d3e2de8b99 100644 --- a/src/Java/gtPlusPlus/core/inventories/InventoryFishTrap.java +++ b/src/Java/gtPlusPlus/core/inventories/InventoryFishTrap.java @@ -24,7 +24,7 @@ public class InventoryFishTrap implements IInventory{ NBTTagCompound data = list.getCompoundTagAt(i); int slot = data.getInteger("Slot"); if(slot >= 0 && slot < INV_SIZE){ - Utils.LOG_INFO("Trying to read NBT data from inventory."); + //Utils.LOG_INFO("Trying to read NBT data from inventory."); inventory[slot] = ItemStack.loadItemStackFromNBT(data); } } @@ -35,7 +35,7 @@ public class InventoryFishTrap implements IInventory{ for(int i = 0;i<INV_SIZE;i++){ ItemStack stack = inventory[i]; if(stack != null){ - Utils.LOG_INFO("Trying to write NBT data to inventory."); + //Utils.LOG_INFO("Trying to write NBT data to inventory."); NBTTagCompound data = new NBTTagCompound(); stack.writeToNBT(data); data.setInteger("Slot", i); |
