perms for tutoirial command

This commit is contained in:
Ben 2016-04-05 23:37:08 +01:00
parent 4bdd33c87b
commit 738825ea9d
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ public class FinishCommand extends CommandBase<TutorialManager>
{
public FinishCommand(TutorialManager plugin)
{
super(plugin, Rank.DEVELOPER, "finish", "end");
super(plugin, Rank.JNR_DEV, "finish", "end");
}
@Override

View File

@ -13,7 +13,7 @@ public class TutorialCommand extends MultiCommandBase<TutorialManager>
{
public TutorialCommand(TutorialManager plugin)
{
super(plugin, Rank.DEVELOPER, "tutorial", "tut");
super(plugin, Rank.JNR_DEV, "tutorial", "tut");
AddCommand(new StartCommand(plugin));
AddCommand(new FinishCommand(plugin));