Check System Added and Massive Reformat

This commit is contained in:
Driftay
2019-08-24 13:18:50 -04:00
parent 84f4e0f732
commit 72f76aeb71
199 changed files with 15584 additions and 15463 deletions

View File

@@ -9,6 +9,8 @@ import java.util.UUID;
public class CmdFGlobal extends FCommand {
public static List<UUID> toggled = new ArrayList<>();
public CmdFGlobal() {
super();
@@ -26,18 +28,16 @@ public class CmdFGlobal extends FCommand {
senderMustBeAdmin = false;
}
public static List<UUID> toggled = new ArrayList<>();
@Override
public void perform() {
Player p = (Player)sender;
Player p = (Player) sender;
// /f global
if (toggled.contains(p.getUniqueId())){
if (toggled.contains(p.getUniqueId())) {
toggled.remove(p.getUniqueId());
}else{
} else {
toggled.add(p.getUniqueId());
}