Saber-Factions/src/com/massivecraft/factions/commands/FCommandLeave.java

33 lines
491 B
Java
Raw Normal View History

2011-07-18 22:06:02 +02:00
package com.massivecraft.factions.commands;
2011-03-18 17:33:23 +01:00
2011-03-23 17:39:56 +01:00
import org.bukkit.command.CommandSender;
2011-03-18 17:33:23 +01:00
2011-10-08 23:22:02 +02:00
public class FCommandLeave extends FCommand {
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;
}
@Override
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
if( isLocked() ) {
sendLockMessage();
return;
}
me.leave(true);
2011-03-18 17:33:23 +01:00
}
}