Skip to content

Commit

Permalink
One tiny fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexatos committed Sep 21, 2014
1 parent 22bdbdd commit 4022ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/library/crafting/ToolBuilder.java
Expand Up @@ -29,7 +29,7 @@ public static void addNormalToolRecipe (ToolCore output, Item head, Item handle)
ToolRecipe recipe = instance.recipeList.get(output.getToolName());
if (recipe != null)
{
recipe.addHeadItem(new ItemStack(head,1));
recipe.addHeadItem(new ItemStack(head));
recipe.addHandleItem(new ItemStack(handle));
}
else
Expand Down

0 comments on commit 4022ea1

Please sign in to comment.