revert certain permissions from being ALL or containing JR.DEV (that were used for testing)
This commit is contained in:
parent
5c383a1df3
commit
5c2569e822
@ -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));
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user