Fix losing enchants from stacked items in custom inventories

This commit is contained in:
Wesley Wolfe 2012-03-02 12:52:45 -06:00 committed by EvilSeph
parent 42822ddca4
commit 77ceb0002c

View File

@ -66,7 +66,7 @@ public class CraftInventoryCustom extends CraftInventory {
this.setItem(i, null);
result = stack;
} else {
result = new ItemStack(stack.id, j, stack.getData());
result = new ItemStack(stack.id, j, stack.getData(), stack.getEnchantments());
stack.count -= j;
}
this.update();
@ -81,7 +81,7 @@ public class CraftInventoryCustom extends CraftInventory {
this.setItem(i, null);
result = stack;
} else {
result = new ItemStack(stack.id, 1, stack.getData());
result = new ItemStack(stack.id, 1, stack.getData(), stack.getEnchantments());
stack.count -= 1;
}
return result;