Jump to content

different names for subblocks


dontrell94

Recommended Posts

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

Link to comment
Share on other sites

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");

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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