Skip to content

Commit

Permalink
Build 24
Browse files Browse the repository at this point in the history
removed some debug stuff.
  • Loading branch information
BluSunrize committed May 5, 2016
1 parent af7d014 commit 4d6d7a1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,6 @@ public <T> T getCapability(Capability<T> capability, EnumFacing facing)
if(capability==net.minecraftforge.items.CapabilityItemHandler.ITEM_HANDLER_CAPABILITY)
{
TileEntityCokeOven master = master();
// System.out.println("master: "+master);
if(master==null)
return null;
return (T)master.invHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,11 @@ public ItemStack getStackInSlot(int slot)
@Override
public ItemStack insertItem(int slot, ItemStack stack, boolean simulate)
{
// System.out.println("attempt: "+stack);
if(!canInsert[slot] || stack==null)
return stack;
// System.out.println("1");

if(!inv.isStackValid(this.slotOffset + slot, stack))
return stack;
// System.out.println("2");

int offsetSlot = this.slotOffset+slot;
ItemStack currentStack = inv.getInventory()[offsetSlot];
Expand Down

0 comments on commit 4d6d7a1

Please sign in to comment.