Fix repeated argument in CleintCommands.

This commit is contained in:
Lex Manos 2013-10-07 14:16:04 -07:00
parent c8df5b832e
commit 1a6743331b
1 changed files with 4 additions and 3 deletions

View File

@ -43,9 +43,10 @@ public class ClientCommandHandler extends CommandHandler
message = message.substring(1);
}
String[] args = message.split(" ");
String commandName = args[0];
System.arraycopy(args, 1, args, 0, args.length - 1);
String[] temp = message.split(" ");
String[] args = new String[temp.length - 1];
String commandName = temp[0];
System.arraycopy(temp, 1, args, 0, args.length);
ICommand icommand = (ICommand) getCommands().get(commandName);
try