Open Draco18s opened 7 years ago
Your tutorial page on items here uses setUnlocalizedName(ModTut.MODID + ".firstitem");
setUnlocalizedName(ModTut.MODID + ".firstitem");
You should instead use setUnlocalizedName(item.getRegistryName()); as the registry name will already have the ModID prepended.
setUnlocalizedName(item.getRegistryName());
Your tutorial page on items here uses
setUnlocalizedName(ModTut.MODID + ".firstitem");
You should instead use
setUnlocalizedName(item.getRegistryName());
as the registry name will already have the ModID prepended.