Fix the default permission of /trigger

This commit is contained in:
Thinkofname 2016-03-31 00:50:39 +01:00
parent 9dc467e4c8
commit 8b61cc5208

View File

@ -29,6 +29,7 @@ public final class CommandPermissions {
DefaultPermissions.registerPermission(PREFIX + "seed", "Allows the user to view the seed of the world", PermissionDefault.OP, commands);
DefaultPermissions.registerPermission(PREFIX + "effect", "Allows the user to add/remove effects on players", PermissionDefault.OP, commands);
DefaultPermissions.registerPermission(PREFIX + "selector", "Allows the use of selectors", PermissionDefault.OP, commands);
DefaultPermissions.registerPermission(PREFIX + "trigger", "Allows the use of the trigger command", PermissionDefault.TRUE, commands);
commands.recalculatePermissibles();
return commands;