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

33 lines
1.0 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Board;
import com.massivecraft.factions.Conf;
2011-10-09 18:35:39 +02:00
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.P;
2011-10-09 18:35:39 +02:00
import com.massivecraft.factions.struct.Permission;
2014-04-04 20:55:21 +02:00
public class CmdSafeunclaimall extends FCommand {
public CmdSafeunclaimall() {
2014-07-01 21:52:40 +02:00
this.aliases.add("safeunclaimall"); this.aliases.add("safedeclaimall");
2014-04-04 20:55:21 +02:00
//this.requiredArgs.add("");
//this.optionalArgs.put("radius", "0");
2014-07-01 21:52:40 +02:00
this.permission = Permission.MANAGE_SAFE_ZONE.node; this.disableOnLock = true;
2014-04-04 20:55:21 +02:00
2014-07-01 21:52:40 +02:00
senderMustBePlayer = false; senderMustBeMember = false; senderMustBeModerator = false;
2014-04-04 20:55:21 +02:00
senderMustBeAdmin = false;
this.setHelpShort("Unclaim all safezone land");
}
@Override
public void perform() {
2014-07-01 21:52:40 +02:00
Board.unclaimAll(Factions.i.getSafeZone().getId()); msg("<i>You unclaimed ALL safe zone land.");
2014-04-04 20:55:21 +02:00
2014-07-01 21:49:42 +02:00
if (Conf.logLandUnclaims) { P.p.log(fme.getName() + " unclaimed all safe zones."); }
2014-04-04 20:55:21 +02:00
}
}