tr7zw / Item-NBT-API

Add custom NBT tags to Items/Tiles/Entities without NMS!
https://www.spigotmc.org/resources/item-entity-tile-nbt-api.7939/
MIT License
563 stars 77 forks source link

Setting nbt clears item meta #289

Closed Ekpoa closed 3 months ago

Ekpoa commented 3 months ago

After setting nbt it clears all current item meta, is there a way around this?

Ekpoa commented 3 months ago

nvm was using deprecated new NBTItem(item, true)

tr7zw commented 3 months ago

That isn't the issue(NBTItem is just deprecated so people move to NBT.modify/get instead). ItemMeta contains the nbt. So getting meta(contains a copy of the nbt), changing the nbt and then setting the meta reverts the nbt back to when the meta was created.