Jump to content

Placing spawn egg in creative tab


MSpace-Dev

Recommended Posts

Hey all,

 

I'm trying to put all my spawn eggs in my mod's creative tab. Here's the code.

 

    public static final CreativeTabs creativeTab = new CreativeTabs(CreativeTabs.getNextID(), "modid") {
        @Override
        public ItemStack getTabIconItem() {
            return new ItemStack(ModBlocks.block);
        }

        @Override
        @SideOnly(Side.CLIENT)
        public void displayAllRelevantItems(NonNullList<ItemStack> itemList)
        {
            super.displayAllRelevantItems(itemList);
            itemList.add(new ItemStack(Items.SPAWN_EGG, 1, 0, getSpawnEggNBT("mod_entity")));
        }
    };
          
    private static NBTTagCompound getSpawnEggNBT(String name)
    {
        NBTTagCompound base = new NBTTagCompound();
        base.setString("id", "modid:" + name);

        NBTTagCompound nbt = new NBTTagCompound();
        nbt.setTag("EntityTag", base);

        return nbt;
    }

 

The spawn egg is displayed in my creative tab, however, there is no NBT on the item. Pretty sure I'm screwing up the getSpawnEggNBT() method. Thanks.

I need my NBT to look like this {EntityTag:{id:"modid:mod_entity"}}

Edited by MSpace-Dev
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.

×
×
  • Create New...

Important Information

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