4db185e3ee
* Adds recruit role below the normal role. * Adds /f promote and demote. Access to this command defaults to moderator if not set in /f perm * Default role is still set to recruite. Will have to /f demote to set players to that rank.
10 lines
182 B
Java
10 lines
182 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
public class CmdDemote extends FPromoteCommand {
|
|
|
|
public CmdDemote() {
|
|
aliases.add("demote");
|
|
this.relative = -1;
|
|
}
|
|
}
|