Option to remove permissions from perm gui.

bStats tracking
Admins are demoted coleaders instead of mods
Changed fly for loop to iterator to avoid concurrent exceptions
This commit is contained in:
Naman
2018-03-27 08:17:55 -05:00
parent b92202e86b
commit 3d2bf73497
11 changed files with 725 additions and 14 deletions

View File

@@ -52,13 +52,12 @@ public class CmdCheckpoint extends FCommand {
} else {
fme.msg(TL.COMMAND_CHECKPOINT_CLAIMED);
}
this.doWarmUp(WarmUpUtil.Warmup.WARP, TL.WARMUPS_NOTIFY_TELEPORT, "Checkpoint", new Runnable() {
this.doWarmUp(WarmUpUtil.Warmup.CHECKPOINT, TL.WARMUPS_NOTIFY_TELEPORT, "Checkpoint", new Runnable() {
@Override
public void run() {
// Create a smoke effect
CmdCheckpoint.this.me.teleport(fme.getFaction().getCheckpoint());
}
}, this.p.getConfig().getLong("warmups.f-checkpoint", 0));
}, this.p.getConfig().getLong("warmups.f-checkpoint", 10));
}