Jump to content

[1.12.2] What does take to make an item have an nbt tag by default


Issac29

Recommended Posts

I tried doing that but it still gave me the default non-nbt item.

@Override
  public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> items) {
  NBTTagCompound nbt = new NBTTagCompound();
  nbt.setInteger("HideFlags", 2);
  if (this.isInCreativeTab(tab)) {
    items.add(new ItemStack(this, 1, 0, nbt));
  }
}

Here is the code.

Link to comment
Share on other sites

1 hour ago, Issac29 said:

but it still gave me the default non-nbt item.

That's because you never do anything with the compound you made. You need to set the stack's NBT to be the tag, using ItemStack#setTagCompound().

Fancy 3D Graphing Calculator mod, with many different coordinate systems.

Lightweight 3D/2D position/vector transformations library, also with support for different coordinate systems.

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.