Jump to content

TheBeastGamer25

Members
  • Posts

    2
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

TheBeastGamer25's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. I do not see a constructer like that. Weird
  2. I have this code ``` package me.thebeastgamer25.titaniumCraft.items; import me.thebeastgamer25.titaniumCraft.Refrence; import net.minecraft.item.Item.ToolMaterial; import net.minecraft.item.ItemAxe; import net.minecraft.util.ResourceLocation; public class ItemTitaniumAxe extends ItemAxe { public ItemTitaniumAxe(ToolMaterial material, String unlocalizedName) { super(material); this.setUnlocalizedName(unlocalizedName); this.setRegistryName(new ResourceLocation(Refrence.MODID, unlocalizedName)); } } ``` And I get this error: java.lang.ArrayIndexOutOfBoundsException: 5
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.