mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 10:17:38 +01:00
Clone item enchantments unchecked
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
f235a09660
commit
2a560a3b24
@ -26,7 +26,7 @@ public class CraftItemStack extends ItemStack {
|
|||||||
|
|
||||||
public CraftItemStack(ItemStack item) {
|
public CraftItemStack(ItemStack item) {
|
||||||
this(item.getTypeId(), item.getAmount(), item.getDurability());
|
this(item.getTypeId(), item.getAmount(), item.getDurability());
|
||||||
addEnchantments(item.getEnchantments());
|
addUnsafeEnchantments(item.getEnchantments());
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 'Overwritten' constructors from ItemStack, yay for Java sucking */
|
/* 'Overwritten' constructors from ItemStack, yay for Java sucking */
|
||||||
|
Loading…
Reference in New Issue
Block a user