Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class CustomAxe extends ItemAxe {
  2. public CustomAxe(String name, IItemTier tier, int attackDamageIn, float attackSpeedIn, Item.Properties builder) {
  3. super(tier, attackDamageIn, attackSpeedIn, builder);
  4.  
  5. this.setRegistryName(Reference.MODID, name);
  6. ModTools.TOOLS.add(this);
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement