2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-18 17:33:23 +01:00
|
|
|
|
2019-12-12 11:48:00 +01:00
|
|
|
import com.massivecraft.factions.Conf;
|
2011-10-09 14:53:38 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2015-01-22 00:58:33 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
2019-12-12 11:48:00 +01:00
|
|
|
import org.bukkit.ChatColor;
|
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
|
|
|
|
2019-12-02 19:55:38 +01:00
|
|
|
/**
|
|
|
|
* @author FactionsUUID Team
|
|
|
|
*/
|
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
public CmdLeave() {
|
|
|
|
super();
|
|
|
|
this.aliases.add("leave");
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.LEAVE)
|
|
|
|
.playerOnly()
|
|
|
|
.memberOnly()
|
|
|
|
.build();
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
@Override
|
|
|
|
public void perform(CommandContext context) {
|
|
|
|
context.fPlayer.leave(true);
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.LEAVE_DESCRIPTION;
|
|
|
|
}
|
2015-01-22 00:58:33 +01:00
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
}
|