Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdLeave.java

37 lines
684 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.struct.Permission;
import com.massivecraft.factions.zcore.util.TL;
2011-03-18 17:33:23 +01:00
2011-10-09 20:10:19 +02:00
public class CmdLeave extends FCommand {
2014-04-04 20:55:21 +02:00
public CmdLeave() {
super();
this.aliases.add("leave");
2014-04-04 20:55:21 +02:00
//this.requiredArgs.add("");
//this.optionalArgs.put("", "");
2014-04-04 20:55:21 +02:00
this.permission = Permission.LEAVE.node;
this.disableOnLock = true;
2014-04-04 20:55:21 +02:00
2018-12-21 22:46:10 +01:00
senderMustBePlayer = true;
senderMustBeMember = true;
senderMustBeModerator = false;
senderMustBeColeader = false;
senderMustBeAdmin = false;
}
2014-04-04 20:55:21 +02:00
@Override
public void perform() {
fme.leave(true);
}
2014-04-04 20:55:21 +02:00
@Override
public TL getUsageTranslation() {
return TL.LEAVE_DESCRIPTION;
}
2011-03-18 17:33:23 +01:00
}