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

64 lines
1.7 KiB
Java
Raw Normal View History

2019-07-02 03:26:13 +02:00
package com.massivecraft.factions.cmd.claim;
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;
2019-08-02 23:01:33 +02:00
import com.massivecraft.factions.P;
2019-07-02 03:26:13 +02:00
import com.massivecraft.factions.cmd.FCommand;
2011-10-09 18:35:39 +02:00
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.zcore.util.TL;
import org.bukkit.Bukkit;
import org.bukkit.World;
2014-04-04 20:55:21 +02:00
public class CmdSafeunclaimall extends FCommand {
public CmdSafeunclaimall() {
this.aliases.add("safeunclaimall");
this.aliases.add("safedeclaimall");
2014-04-04 20:55:21 +02:00
//this.requiredArgs.add("");
this.optionalArgs.put("world", "all");
2014-04-04 20:55:21 +02:00
this.permission = Permission.MANAGE_SAFE_ZONE.node;
this.disableOnLock = true;
2014-04-04 20:55:21 +02:00
senderMustBePlayer = false;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeColeader = false;
senderMustBeAdmin = false;
2014-04-04 20:55:21 +02:00
2018-12-21 22:46:10 +01:00
}
2014-04-04 20:55:21 +02:00
@Override
public void perform() {
String worldName = argAsString(0);
World world = null;
if (worldName != null) {
world = Bukkit.getWorld(worldName);
}
String id = Factions.getInstance().getSafeZone().getId();
if (world == null) {
Board.getInstance().unclaimAll(id);
} else {
Board.getInstance().unclaimAllInWorld(id, world);
}
msg(TL.COMMAND_SAFEUNCLAIMALL_UNCLAIMED);
2014-04-04 20:55:21 +02:00
if (Conf.logLandUnclaims) {
P.p.log(TL.COMMAND_SAFEUNCLAIMALL_UNCLAIMEDLOG.format(sender.getName()));
}
}
2014-04-04 20:55:21 +02:00
@Override
public TL getUsageTranslation() {
return TL.COMMAND_SAFEUNCLAIMALL_DESCRIPTION;
}
}