Skip to content

Commit

Permalink
Comments!
Browse files Browse the repository at this point in the history
  • Loading branch information
mDiyo committed Sep 21, 2013
1 parent d6162a1 commit a27c2a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tconstruct/blocks/logic/SmelteryLogic.java
Expand Up @@ -360,7 +360,7 @@ private void handleItemEntity (EntityItem item)

item.age = 0;
ItemStack istack = item.getEntityItem();
if (istack == null || istack.stackSize <= 0)
if (istack == null || istack.stackSize <= 0) //Probably most definitely not necessary
return;

int maxSlot = this.getSizeInventory();
Expand Down

0 comments on commit a27c2a5

Please sign in to comment.