Clone item enchantments unchecked

This commit is contained in:
Nathan Adams 2011-11-27 03:58:43 +00:00
parent 894ab9f949
commit 402e3c26e1

View File

@ -26,7 +26,7 @@ public class CraftItemStack extends ItemStack {
public CraftItemStack(ItemStack item) {
this(item.getTypeId(), item.getAmount(), item.getDurability());
addEnchantments(item.getEnchantments());
addUnsafeEnchantments(item.getEnchantments());
}
/* 'Overwritten' constructors from ItemStack, yay for Java sucking */