2011-04-08 15:51:07 +02:00
|
|
|
package org.mcteam.factions.commands;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-04-08 15:51:07 +02:00
|
|
|
import org.mcteam.factions.Board;
|
|
|
|
import org.mcteam.factions.Conf;
|
|
|
|
import org.mcteam.factions.FLocation;
|
|
|
|
import org.mcteam.factions.Faction;
|
|
|
|
import org.mcteam.factions.Factions;
|
|
|
|
import org.mcteam.factions.struct.Role;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
public class FCommandUnclaim extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandUnclaim() {
|
2011-03-22 18:48:09 +01:00
|
|
|
aliases.add("unclaim");
|
|
|
|
aliases.add("declaim");
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
helpDescription = "Unclaim the land where you are standing";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void perform() {
|
2011-05-08 17:16:43 +02:00
|
|
|
|
|
|
|
if( isLocked() ) {
|
|
|
|
sendLockMessage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
FLocation flocation = new FLocation(me);
|
|
|
|
Faction otherFaction = Board.getFactionAt(flocation);
|
|
|
|
|
|
|
|
if (otherFaction.isSafeZone()) {
|
|
|
|
if (Factions.hasPermManageSafeZone(sender)) {
|
|
|
|
Board.removeAt(flocation);
|
|
|
|
sendMessage("Safe zone was unclaimed.");
|
|
|
|
} else {
|
|
|
|
sendMessage("This is a safe zone. You lack permissions to unclaim.");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
if ( ! assertHasFaction()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! assertMinRole(Role.MODERATOR)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Faction myFaction = me.getFaction();
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
if ( myFaction != otherFaction) {
|
|
|
|
sendMessage("You don't own this land.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Board.removeAt(flocation);
|
|
|
|
|
|
|
|
myFaction.sendMessage(me.getNameAndRelevant(myFaction)+Conf.colorSystem+" unclaimed some land.");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|