Jump to content

Adding NBT to a Dropped Item


TheDerpySupport

Recommended Posts

Hello~ I hope I'm in the right section... Um basically I have added block versions of Potion bottles to my mod 

 As seen here https://i.imgur.com/vR61nSy.png

however my issue is with the Water Bottle :< It drops Uncraftable Potion instead of the default water bottle due to the Uncraftable Potion have no NBT tags so I'm in need of some help~
I have looked around for a few hours however anything I did find was for Bukkit or Spigot.

 

/		@Override
		public List<ItemStack> getDrops(BlockState state, LootContext.Builder builder) {
			List<ItemStack> dropsOriginal = super.getDrops(state, builder);
			if (!dropsOriginal.isEmpty())
				return dropsOriginal;
			return Collections.singletonList(new ItemStack(Items.POTION, (int) (0)));
		}
	}

 

This is my first time requiring to add NBT to a dropped item and I'm not sure how to go about it

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.