Skip to content

Commit

Permalink
Add arrow shafts as valid arrow handles.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexatos committed Dec 1, 2017
1 parent 5a77631 commit 0ccd889
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
minecraft.version=1.7.10
forge.version=10.13.3.1384-1.7.10

tgregworks.version=1.0.17
tgregworks.version=1.0.18

gregtech.version=gregtech_1.7.10:5.07.07
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,12 @@ public void addRecipesForToolBuilder() {
ToolBuilder.addCustomToolRecipe(new TGregBowRecipe(partMap.get(PartTypes.CrossbowLimb), partMap.get(PartTypes.CrossbowBody), TinkerWeaponry.bowstring,
partMap.get(PartTypes.ToughBind), TinkerWeaponry.crossbow));

ToolBuilder.addCustomToolRecipe(new TGregAmmoRecipe(partMap.get(PartTypes.ArrowHead), partMap.get(PartTypes.ToolRod), TinkerWeaponry.fletching,
TinkerWeaponry.arrowAmmo));
{
TGregAmmoRecipe arrowRecipe = new TGregAmmoRecipe(partMap.get(PartTypes.ArrowHead), partMap.get(PartTypes.ToolRod), TinkerWeaponry.fletching,
TinkerWeaponry.arrowAmmo);
arrowRecipe.addHandleItem(TinkerWeaponry.partArrowShaft);
ToolBuilder.addCustomToolRecipe(arrowRecipe);
}
ToolBuilder.addCustomToolRecipe(new TGregToolRecipe(partMap.get(PartTypes.Shuriken), partMap.get(PartTypes.Shuriken),
partMap.get(PartTypes.Shuriken), partMap.get(PartTypes.Shuriken), TinkerWeaponry.shuriken));
addTGregToolRecipe(TinkerWeaponry.throwingknife, PartTypes.KnifeBlade, PartTypes.ToolRod);
Expand Down

0 comments on commit 0ccd889

Please sign in to comment.