Skip to content

Commit

Permalink
Reduce the amount of modifiers to 2 on arrows/bolts
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Nov 16, 2014
1 parent 0756c25 commit 86ef2ce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/tconstruct/weaponry/WeaponryHandler.java
Expand Up @@ -86,6 +86,8 @@ public void onAmmoCrafted(ToolCraftEvent.NormalTool event)
{
tags.setInteger("Fiery", 5);
}
// arrows get only 2 modifiers
tags.setInteger("Modifiers", 2);
}
else if(event.tool instanceof BoltAmmo)
{
Expand All @@ -111,6 +113,7 @@ else if(event.tool instanceof BoltAmmo)
int reinforced = Math.max(headMat.reinforced(), coreMat.reinforced());

setAmmoData(tags, durability, weight, breakChance, accuracy, shoddy, reinforced);
tags.setInteger("Modifiers", 2);
}

// now that durability has been handled...
Expand Down

0 comments on commit 86ef2ce

Please sign in to comment.