mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 06:36:44 +01:00
40 lines
1.3 KiB
Java
40 lines
1.3 KiB
Java
|
package com.intellectualcrafters.plot.commands;
|
||
|
|
||
|
import com.intellectualcrafters.plot.PS;
|
||
|
import com.intellectualcrafters.plot.config.C;
|
||
|
import com.intellectualcrafters.plot.database.DBFunc;
|
||
|
import com.intellectualcrafters.plot.flag.Flag;
|
||
|
import com.intellectualcrafters.plot.flag.FlagManager;
|
||
|
import com.intellectualcrafters.plot.object.Plot;
|
||
|
import com.intellectualcrafters.plot.object.PlotPlayer;
|
||
|
import com.intellectualcrafters.plot.util.BlockManager;
|
||
|
import com.intellectualcrafters.plot.util.MainUtil;
|
||
|
|
||
|
import java.util.*;
|
||
|
|
||
|
public class DebugAllowUnsafe extends SubCommand {
|
||
|
|
||
|
public static final List<UUID> unsafeAllowed = new ArrayList<>();
|
||
|
|
||
|
public DebugAllowUnsafe() {
|
||
|
super(Command.ALLOWUNSAFE, "Allow unsafe actions until toggled off", "allowunsafe", CommandCategory.DEBUG, true);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean execute(final PlotPlayer plr, final String... args) {
|
||
|
if (plr == null) {
|
||
|
MainUtil.sendMessage(plr, C.IS_CONSOLE);
|
||
|
return false;
|
||
|
}
|
||
|
if (unsafeAllowed.contains(plr.getUUID())) {
|
||
|
unsafeAllowed.remove(plr.getUUID());
|
||
|
sendMessage(plr, C.DEBUGALLOWUNSAFE_OFF);
|
||
|
} else {
|
||
|
unsafeAllowed.add(plr.getUUID());
|
||
|
sendMessage(plr, C.DEBUGALLOWUNSAFE_ON);
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|