mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 11:38:29 +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
@ -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 New Issue
Block a user