Posted July 7, 201312 yr Name kind of explains it. I implemented metadata for some blocks but all the names are the same. Info can be given if requested. I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0
July 7, 201312 yr In your ItemBlock, override: @Override public String getUnlocalizedName(ItemStack stack) { } Make it return whatever you need it to based on the stack's properties, specifically using stack.getItemDamage(). Then use LanguageRegistry to register names to the blocks: LanguageRegistry.addName(new ItemStack(block, 1, meta), "A Name");
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.