Fix commands not being executed at all when disabled

This commit is contained in:
md_5 2012-11-06 18:35:51 +11:00
parent 71ab7f7c45
commit 70be951ac2

View File

@ -120,7 +120,10 @@ public class BungeeCord
String[] split = commandLine.trim().split(" "); String[] split = commandLine.trim().split(" ");
String commandName = split[0].toLowerCase(); String commandName = split[0].toLowerCase();
Command command = commandMap.get(commandName); Command command = commandMap.get(commandName);
if (command != null && (config.disabledCommands == null || !config.disabledCommands.contains(commandName))) if (config.disabledCommands == null || !config.disabledCommands.contains(commandName))
{
return false;
} else if (command != null)
{ {
String[] args = Arrays.copyOfRange(split, 1, split.length); String[] args = Arrays.copyOfRange(split, 1, split.length);
try try