Skip to content

Commit

Permalink
Make chisels pop out of the crafting grid if they break
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Sep 29, 2014
1 parent 9d80633 commit 15d2cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/items/tools/Chisel.java
Expand Up @@ -46,7 +46,7 @@ public ItemStack getContainerItem (ItemStack itemStack)
@Override
public boolean doesContainerItemLeaveCraftingGrid (ItemStack par1ItemStack)
{
return false;
return par1ItemStack.hasTagCompound() && par1ItemStack.getTagCompound().getCompoundTag("InfiTool").getBoolean("Broken");
}

boolean performDetailing (World world, int x, int y, int z, int blockID, int blockMeta)
Expand Down

0 comments on commit 15d2cbe

Please sign in to comment.