Passed a string of parent commands rather than just the current command.

This commit is contained in:
sk89q
2014-06-28 17:04:38 -07:00
parent 10c45fcb22
commit 3750190f2c
4 changed files with 10 additions and 11 deletions

View File

@ -216,7 +216,7 @@ public final class CommandManager {
long start = System.currentTimeMillis();
try {
dispatcher.call(null, Joiner.on(" ").join(split), locals);
dispatcher.call(Joiner.on(" ").join(split), locals, new String[0]);
} catch (CommandPermissionsException e) {
actor.printError("You don't have permission to do this.");
} catch (InvalidUsageException e) {