2019-07-02 03:26:13 +02:00
|
|
|
package com.massivecraft.factions.cmd.claim;
|
2011-05-29 23:28:29 +02:00
|
|
|
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.Board;
|
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
|
|
|
import com.massivecraft.factions.Conf;
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.Factions;
|
2019-09-14 21:13:01 +02:00
|
|
|
import com.massivecraft.factions.FactionsPlugin;
|
|
|
|
import com.massivecraft.factions.cmd.CommandContext;
|
|
|
|
import com.massivecraft.factions.cmd.CommandRequirements;
|
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;
|
2014-12-08 00:12:52 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
2017-09-04 22:57:51 +02:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.World;
|
2011-05-29 23:28:29 +02:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdSafeunclaimall extends FCommand {
|
|
|
|
|
2019-09-15 11:02:53 +02:00
|
|
|
public CmdSafeunclaimall() {
|
|
|
|
this.aliases.add("safeunclaimall");
|
|
|
|
this.aliases.add("safedeclaimall");
|
|
|
|
this.optionalArgs.put("world", "all");
|
|
|
|
|
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.MANAGE_SAFE_ZONE)
|
|
|
|
.build();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform(CommandContext context) {
|
|
|
|
String worldName = context.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);
|
|
|
|
}
|
|
|
|
|
|
|
|
context.msg(TL.COMMAND_SAFEUNCLAIMALL_UNCLAIMED);
|
|
|
|
|
|
|
|
if (Conf.logLandUnclaims) {
|
|
|
|
FactionsPlugin.getInstance().log(TL.COMMAND_SAFEUNCLAIMALL_UNCLAIMEDLOG.format(context.sender.getName()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_SAFEUNCLAIMALL_DESCRIPTION;
|
|
|
|
}
|
2015-01-22 00:58:33 +01:00
|
|
|
|
2011-05-29 23:28:29 +02:00
|
|
|
}
|