diff options
author | snowleo <schneeleo@gmail.com> | 2011-11-28 20:24:13 +0100 |
---|---|---|
committer | snowleo <schneeleo@gmail.com> | 2011-11-28 20:24:13 +0100 |
commit | 5e24584bf7455a8a7a19470c7114b0b11bea2ba2 (patch) | |
tree | 7eb203b0c2f6b469298b6b4f5488dfca2ea75f27 | |
parent | 9acc7db06fcae590764fb252fb57a728af57fea9 (diff) | |
download | Essentials-5e24584bf7455a8a7a19470c7114b0b11bea2ba2.tar Essentials-5e24584bf7455a8a7a19470c7114b0b11bea2ba2.tar.gz Essentials-5e24584bf7455a8a7a19470c7114b0b11bea2ba2.tar.lz Essentials-5e24584bf7455a8a7a19470c7114b0b11bea2ba2.tar.xz Essentials-5e24584bf7455a8a7a19470c7114b0b11bea2ba2.zip |
Fix bug in /sell command
-rw-r--r-- | Essentials/src/com/earth2me/essentials/commands/Commandsell.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandsell.java b/Essentials/src/com/earth2me/essentials/commands/Commandsell.java index 512eeabe3..07338e096 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandsell.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandsell.java @@ -154,7 +154,8 @@ public class Commandsell extends EssentialsCommand } //TODO: Prices for Enchantments - final ItemStack ris = new ItemStack(is.getType(), amount, is.getDurability()); + final ItemStack ris = is.clone(); + is.setAmount(amount); InventoryWorkaround.removeItem(user.getInventory(), true, ris); user.updateInventory(); Trade.log("Command", "Sell", "Item", user.getName(), new Trade(ris, ess), user.getName(), new Trade(worth * amount, ess), user.getLocation(), ess); |