Factions/src/com/massivecraft/factions/cmd/CmdFactionsLeave.java

27 lines
410 B
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-03-18 17:33:23 +01:00
import com.massivecraft.factions.Perm;
2011-03-18 17:33:23 +01:00
2013-04-10 13:12:22 +02:00
public class CmdFactionsLeave extends FCommand {
2011-03-18 17:33:23 +01:00
2013-04-10 13:12:22 +02:00
public CmdFactionsLeave()
{
super();
this.aliases.add("leave");
//this.requiredArgs.add("");
//this.optionalArgs.put("", "");
this.permission = Perm.LEAVE.node;
senderMustBeMember = true;
2011-03-23 17:39:56 +01:00
}
@Override
public void perform()
{
fme.leave(true);
2011-03-18 17:33:23 +01:00
}
}