diff options
author | snowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb> | 2011-04-16 15:12:45 +0000 |
---|---|---|
committer | snowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb> | 2011-04-16 15:12:45 +0000 |
commit | 59c0534d48fd2412e0ca4b19595a5b85669f8301 (patch) | |
tree | 4607e12e042507c4e5eb85374cfe2818dd77c4c3 | |
parent | 5ef0fd180b7058c8cab60399207ed782b9845331 (diff) | |
download | Essentials-59c0534d48fd2412e0ca4b19595a5b85669f8301.tar Essentials-59c0534d48fd2412e0ca4b19595a5b85669f8301.tar.gz Essentials-59c0534d48fd2412e0ca4b19595a5b85669f8301.tar.lz Essentials-59c0534d48fd2412e0ca4b19595a5b85669f8301.tar.xz Essentials-59c0534d48fd2412e0ca4b19595a5b85669f8301.zip |
[trunk] /sell itemname amount
New syntax for sell command, proposed by KimKandor
It won't sell the items in hand anymore.
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1221 e251c2fe-e539-e718-e476-b85c1f46cddb
-rw-r--r-- | Essentials/src/com/earth2me/essentials/commands/Commandsell.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandsell.java b/Essentials/src/com/earth2me/essentials/commands/Commandsell.java index 0f8d3f98b..7d8f3a9de 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandsell.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandsell.java @@ -71,8 +71,8 @@ public class Commandsell extends EssentialsCommand if (amount > max || amount < 1) { user.sendMessage("§cYou do not have enough of that item to sell."); - user.sendMessage("§7If you meant to sell all of your items of that type, use /sell without parameters."); - user.sendMessage("§7/sell -1 will sell all but one item, etc."); + user.sendMessage("§7If you meant to sell all of your items of that type, use /sell itemname"); + user.sendMessage("§7/sell itemname -1 will sell all but one item, etc."); return; } |