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

42 lines
969 B
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;
2011-10-09 20:10:19 +02:00
public class CmdWarunclaimall extends FCommand
2011-10-09 18:35:39 +02:00
{
2011-10-09 20:10:19 +02:00
public CmdWarunclaimall()
2011-10-09 18:35:39 +02:00
{
2011-10-09 20:10:19 +02:00
this.aliases.add("warunclaimall");
this.aliases.add("wardeclaimall");
2011-10-09 18:35:39 +02:00
//this.requiredArgs.add("");
2011-10-09 20:10:19 +02:00
//this.optionalArgs.put("", "");
2011-10-09 18:35:39 +02:00
2011-10-09 20:10:19 +02:00
this.permission = Permission.MANAGE_WAR_ZONE.node;
2011-10-09 21:57:43 +02:00
this.disableOnLock = true;
2011-10-09 18:35:39 +02:00
senderMustBePlayer = false;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeAdmin = false;
2011-10-09 20:10:19 +02:00
this.setHelpShort("unclaim all warzone land");
}
@Override
2011-10-09 18:35:39 +02:00
public void perform()
{
2011-10-09 20:10:19 +02:00
Board.unclaimAll(Factions.i.getWarZone().getId());
2011-10-10 13:40:24 +02:00
msg("<i>You unclaimed ALL war zone land.");
if (Conf.logLandUnclaims)
P.p.log(fme.getName()+" unclaimed all war zones.");
}
}