revert certain permissions from being ALL or containing JR.DEV (that were used for testing)

This commit is contained in:
NewGarbo 2015-11-18 16:20:27 +00:00
parent 5c383a1df3
commit 5c2569e822
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ public class TeleportCommand extends MultiCommandBase<Teleport>
{
public TeleportCommand(Teleport plugin)
{
super(plugin, Rank.ADMIN, new Rank[]{Rank.JNR_DEV}, "tp", "teleport");
super(plugin, Rank.ADMIN, "tp", "teleport");
AddCommand(new AllCommand(plugin));
AddCommand(new BackCommand(plugin));

View File

@ -18,7 +18,7 @@ public class ClearCommand extends CommandBase<WorldEventManager>
{
public ClearCommand(WorldEventManager plugin)
{
super(plugin, Rank.DEVELOPER, new Rank[] { Rank.JNR_DEV }, "clear");
super(plugin, Rank.ALL, "clear");
}
@Override

View File

@ -14,7 +14,7 @@ public class StartCommand extends CommandBase<WorldEventManager>
{
public StartCommand(WorldEventManager plugin)
{
super(plugin, Rank.DEVELOPER, new Rank[] { Rank.JNR_DEV }, "start", "create");
super(plugin, Rank.ALL, "start", "create");
}
@Override