Bleeding - Fixed empty commands

Empty commands would always run the first alphabetically sorted TFM command.
This commit is contained in:
Jerom van der Sar
2013-07-12 21:51:03 +02:00
parent f21e50e002
commit 8f6d71fffb
4 changed files with 15 additions and 5 deletions

View File

@ -14,6 +14,11 @@ public class Command_adminmode extends TFM_Command
@Override
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
{
if (args.length != 1)
{
return false;
}
if (args[0].equalsIgnoreCase("off"))
{
TotalFreedomMod.adminOnlyMode = false;

View File

@ -159,6 +159,11 @@ public class TotalFreedomMod extends JavaPlugin
commandLabel,
StringUtils.join(args, " ")), true);
}
if ("".equals(commandLabel))
{
return false;
}
TFM_Command dispatcher;
try