Saber-Factions/src/com/bukkit/mcteam/factions/commands/FCommandLeave.java

27 lines
420 B
Java
Raw Normal View History

2011-03-18 17:33:23 +01:00
package com.bukkit.mcteam.factions.commands;
2011-03-23 17:39:56 +01:00
import org.bukkit.command.CommandSender;
2011-03-18 17:33:23 +01:00
public class FCommandLeave extends FBaseCommand {
2011-03-18 17:33:23 +01:00
public FCommandLeave() {
aliases.add("leave");
2011-03-18 17:33:23 +01:00
helpDescription = "Leave your faction";
}
2011-03-23 17:39:56 +01:00
@Override
public boolean hasPermission(CommandSender sender) {
return true;
}
2011-03-18 17:33:23 +01:00
public void perform() {
if ( ! assertHasFaction()) {
2011-03-19 13:00:03 +01:00
return;
}
2011-03-18 17:33:23 +01:00
2011-03-22 20:36:33 +01:00
me.leave();
2011-03-18 17:33:23 +01:00
}
}