Skip to content

Commit

Permalink
Fix being unable to craft bows and arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
iguanaman committed Dec 12, 2013
1 parent 250a913 commit cb0b62e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/iguanaman/iguanatweakstconstruct/IguanaItems.java
@@ -1,5 +1,6 @@
package iguanaman.iguanatweakstconstruct;

import tconstruct.common.BowRecipe;
import tconstruct.common.TContent;
import tconstruct.items.Bowstring;
import tconstruct.items.Fletching;
Expand Down Expand Up @@ -119,7 +120,10 @@ public static void init()
tb.addNormalToolRecipe(TContent.excavator, TContent.excavatorHead, TContent.toughRod, TContent.largePlate, TContent.toughBinding);
tb.addNormalToolRecipe(TContent.hammer, TContent.hammerHead, TContent.toughRod, TContent.largePlate, TContent.largePlate);
tb.addNormalToolRecipe(TContent.battleaxe, TContent.broadAxeHead, TContent.toughRod, TContent.broadAxeHead, TContent.toughBinding);


tb.addNormalToolRecipe(TContent.arrow, TContent.arrowhead, TContent.toolRod, TContent.fletching);
tb.addCustomToolRecipe(new BowRecipe(TContent.toolRod, TContent.bowstring, TContent.toolRod, TContent.shortbow));

//SKULL ITEM
IguanaLog.log("Adding skull item");
Item.itemsList[Item.skull.itemID] = null;
Expand Down

0 comments on commit cb0b62e

Please sign in to comment.