diff options
author | KHobbits <rob@khobbits.co.uk> | 2012-06-10 22:46:56 +0100 |
---|---|---|
committer | KHobbits <rob@khobbits.co.uk> | 2012-06-10 22:46:56 +0100 |
commit | a10190df51951960932e8f89e53e3688e47d414b (patch) | |
tree | b1c5c05bec5eac54ff84207ed29772cf8c037418 | |
parent | ecfa7454843cb9f4af61127c1a59838c83bf94fd (diff) | |
download | Essentials-a10190df51951960932e8f89e53e3688e47d414b.tar Essentials-a10190df51951960932e8f89e53e3688e47d414b.tar.gz Essentials-a10190df51951960932e8f89e53e3688e47d414b.tar.lz Essentials-a10190df51951960932e8f89e53e3688e47d414b.tar.xz Essentials-a10190df51951960932e8f89e53e3688e47d414b.zip |
Fix /essentials command to not show command debugging if there were no conflicts.
-rw-r--r-- | Essentials/src/com/earth2me/essentials/commands/Commandessentials.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java index ca746c5a8..2a89dcd42 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java @@ -57,7 +57,7 @@ public class Commandessentials extends EssentialsCommand { sender.sendMessage("Essentials " + ess.getDescription().getVersion()); sender.sendMessage("/<command> <reload/debug>"); - sender.sendMessage(_("blockList")); + final StringBuilder disabledCommands = new StringBuilder(); for (Map.Entry<String, String> entry : ess.getAlternativeCommandsHandler().disabledCommands().entrySet()) { @@ -66,7 +66,10 @@ public class Commandessentials extends EssentialsCommand } disabledCommands.append(entry.getKey()).append(" => ").append(entry.getValue()); } - sender.sendMessage(disabledCommands.toString()); + if (disabledCommands.length() > 0) { + sender.sendMessage(_("blockList")); + sender.sendMessage(disabledCommands.toString()); + } } private void run_debug(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception |