From 29f928e7e660f37496c2afceaf397ba555b5ad52 Mon Sep 17 00:00:00 2001 From: draknyte1 Date: Sat, 18 Feb 2017 12:12:37 +1000 Subject: + Additional LFTR work, it's nearly finished. - Removed some debug logging from Fish Traps. --- src/Java/gtPlusPlus/core/inventories/InventoryFishTrap.java | 4 ++-- src/Java/gtPlusPlus/core/tileentities/general/TileEntityFishTrap.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Java/gtPlusPlus/core') 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