From d330ae5050711d1aacc75f3a8c75d1975038b42b Mon Sep 17 00:00:00 2001 From: Aikar Date: Wed, 21 Sep 2016 23:42:13 -0400 Subject: [PATCH] Process NMS Data Conversion post ItemMeta on Copy ItemMeta apply is a destructive process that expects to be the authority on what the items NBT data is. When CraftItemStack.asNMSCopy was called, the conversion ran, potentially setting the converted data into the ItemStacks tag. Then if that item had ItemMeta, it would completely undo that conversion by erasing the NBT Tag. On copy, run conversion post ItemMeta apply. --- ...ata-Conversion-post-ItemMeta-on-Copy.patch | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 Spigot-Server-Patches/Process-NMS-Data-Conversion-post-ItemMeta-on-Copy.patch diff --git a/Spigot-Server-Patches/Process-NMS-Data-Conversion-post-ItemMeta-on-Copy.patch b/Spigot-Server-Patches/Process-NMS-Data-Conversion-post-ItemMeta-on-Copy.patch new file mode 100644 index 0000000000..585af27f51 --- /dev/null +++ b/Spigot-Server-Patches/Process-NMS-Data-Conversion-post-ItemMeta-on-Copy.patch @@ -0,0 +1,63 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Aikar +Date: Wed, 4 May 2016 22:31:18 -0400 +Subject: [PATCH] Process NMS Data Conversion post ItemMeta on Copy + +ItemMeta apply is a destructive process that expects to be the authority on +what the items NBT data is. + +When CraftItemStack.asNMSCopy was called, the conversion ran, potentially setting +the converted data into the ItemStacks tag. + +Then if that item had ItemMeta, it would completely undo that conversion by +erasing the NBT Tag. + +On copy, run conversion post ItemMeta apply. + +diff --git a/src/main/java/net/minecraft/server/ItemStack.java b/src/main/java/net/minecraft/server/ItemStack.java +index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 +--- a/src/main/java/net/minecraft/server/ItemStack.java ++++ b/src/main/java/net/minecraft/server/ItemStack.java +@@ -0,0 +0,0 @@ public final class ItemStack { + this(item, i, 0); + } + ++ // Paper start + public ItemStack(Item item, int i, int j) { ++ this(item, i, j, true); ++ } ++ public ItemStack(Item item, int i, int j, boolean convert) { ++ // Paper end + this.item = item; + this.count = i; + +@@ -0,0 +0,0 @@ public final class ItemStack { + //if (this.damage < 0) { + // this.damage = 0; + //} ++ // Paper start ++ if (convert) convertData(); ++ } ++ public final void convertData() { ++ // Paper end + if (MinecraftServer.getServer() != null) { + NBTTagCompound savedStack = new NBTTagCompound(); + this.save(savedStack); +diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemStack.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemStack.java +index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 +--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemStack.java ++++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemStack.java +@@ -0,0 +0,0 @@ public final class CraftItemStack extends ItemStack { + return null; + } + +- net.minecraft.server.ItemStack stack = new net.minecraft.server.ItemStack(item, original.getAmount(), original.getDurability()); ++ net.minecraft.server.ItemStack stack = new net.minecraft.server.ItemStack(item, original.getAmount(), original.getDurability(), false); // Paper + if (original.hasItemMeta()) { + setItemMeta(stack, original.getItemMeta()); + } ++ stack.convertData(); // Paper + return stack; + } + +-- \ No newline at end of file