Code Cleanup/Added Configurable option to deny and remove homes in ANY factions land.

More Soon..
This commit is contained in:
Driftay
2019-02-10 23:57:45 -05:00
parent 3559a9f090
commit 5a37320397
125 changed files with 3676 additions and 3410 deletions

View File

@@ -21,7 +21,7 @@ public class CmdSeeChunk extends FCommand {
private boolean useParticles;
private int length;
private ParticleEffect effect;
private int taskID = - 1;
private int taskID = -1;
//I remade it cause of people getting mad that I had the same seechunk as drtshock
@@ -61,10 +61,10 @@ public class CmdSeeChunk extends FCommand {
}
private void manageTask() {
if (taskID != - 1) {
if (taskID != -1) {
if (seeChunkMap.keySet().size() == 0) {
Bukkit.getScheduler().cancelTask(taskID);
taskID = - 1;
taskID = -1;
}
} else {
startTask();