mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 13:07:06 +01:00
Fix error when cloning enchanted ItemStacks.
The existing method for cloning a Bukkit ItemStack fails to correctly copy the underlying enchantments. Fix this by overriding .clone() in CraftItemStack, cloning the underlying nms ItemStack correctly. Fixes BUKKIT-360
This commit is contained in:
parent
acfb4f2fbe
commit
1c6adc1587
1 changed files with 5 additions and 0 deletions
|
@ -210,6 +210,11 @@ public class CraftItemStack extends ItemStack {
|
|||
return item;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CraftItemStack clone() {
|
||||
return new CraftItemStack(this.item.cloneItemStack());
|
||||
}
|
||||
|
||||
public static net.minecraft.server.ItemStack createNMSItemStack(ItemStack original) {
|
||||
return new CraftItemStack(original).getHandle();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue