2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-18 17:33:23 +01:00
|
|
|
|
2013-04-09 12:56:29 +02:00
|
|
|
import com.massivecraft.factions.Perm;
|
2013-04-16 12:04:12 +02:00
|
|
|
import com.massivecraft.factions.Rel;
|
|
|
|
import com.massivecraft.factions.cmd.req.ReqRoleIsAtLeast;
|
2013-04-16 10:11:59 +02:00
|
|
|
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
|
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()
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addAliases("leave");
|
2011-10-09 14:53:38 +02:00
|
|
|
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addRequirements(ReqHasPerm.get(Perm.LEAVE.node));
|
2013-04-16 12:04:12 +02:00
|
|
|
this.addRequirements(ReqRoleIsAtLeast.get(Rel.RECRUIT));
|
2011-03-23 17:39:56 +01:00
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-10-09 14:53:38 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
2013-04-25 07:29:19 +02:00
|
|
|
usender.leave();
|
2011-03-18 17:33:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|