Returning true for the command hook for Bukkit.

This commit is contained in:
sk89q 2011-01-22 16:34:46 -08:00
parent 917c3c9881
commit 3d1201df84

View File

@ -162,7 +162,9 @@ public class WorldEditPlugin extends JavaPlugin {
System.arraycopy(args, 0, split, 1, args.length);
split[0] = "/" + cmd.getName();
return controller.handleCommand(wrapPlayer(player), split);
controller.handleCommand(wrapPlayer(player), split);
return true;
}
String[] getGroups(Player player) {