summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-06-10 22:46:56 +0100
committerKHobbits <rob@khobbits.co.uk>2012-06-10 22:46:56 +0100
commita10190df51951960932e8f89e53e3688e47d414b (patch)
treeb1c5c05bec5eac54ff84207ed29772cf8c037418
parentecfa7454843cb9f4af61127c1a59838c83bf94fd (diff)
downloadEssentials-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.java7
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