aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r--src/Java/gtPlusPlus/core/inventories/InventoryFishTrap.java4
-rw-r--r--src/Java/gtPlusPlus/core/tileentities/general/TileEntityFishTrap.java4
2 files changed, 4 insertions, 4 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);
diff --git a/src/Java/gtPlusPlus/core/tileentities/general/TileEntityFishTrap.java b/src/Java/gtPlusPlus/core/tileentities/general/TileEntityFishTrap.java
index 5f6bd802a3..5d07020bf3 100644
--- a/src/Java/gtPlusPlus/core/tileentities/general/TileEntityFishTrap.java
+++ b/src/Java/gtPlusPlus/core/tileentities/general/TileEntityFishTrap.java
@@ -210,7 +210,7 @@ public class TileEntityFishTrap extends TileEntity{
@Override
public void writeToNBT(NBTTagCompound nbt){
super.writeToNBT(nbt);
- Utils.LOG_INFO("Trying to write NBT data to TE.");
+ //Utils.LOG_INFO("Trying to write NBT data to TE.");
NBTTagCompound chestData = new NBTTagCompound();
inventoryContents.writeToNBT(chestData);
nbt.setTag("ContentsChest", chestData);
@@ -219,7 +219,7 @@ public class TileEntityFishTrap extends TileEntity{
@Override
public void readFromNBT(NBTTagCompound nbt){
super.readFromNBT(nbt);
- Utils.LOG_INFO("Trying to read NBT data from TE.");
+ //Utils.LOG_INFO("Trying to read NBT data from TE.");
inventoryContents.readFromNBT(nbt.getCompoundTag("ContentsChest"));
}