Fixed permissions checking for individual command.

Dieser Commit ist enthalten in:
sk89q 2011-01-12 08:51:08 -08:00
Ursprung f55d4be2e9
Commit bd770a5fac

Datei anzeigen

@ -2048,7 +2048,8 @@ public class WorldEditController {
|| player.hasPermission("worldedit"); || player.hasPermission("worldedit");
} }
return player.hasPermission("worldedit"); return player.hasPermission(command)
|| player.hasPermission("worldedit");
} }
/** /**