mirror of
https://github.com/BentoBoxWorld/Level.git
synced 2024-12-19 23:57:36 +01:00
parent
09583aa3a7
commit
eba6e11ec9
@ -1,16 +1,6 @@
|
|||||||
package world.bentobox.level.calculators;
|
package world.bentobox.level.calculators;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.EnumMap;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.LinkedList;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Queue;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.UUID;
|
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
import java.util.concurrent.atomic.AtomicLong;
|
import java.util.concurrent.atomic.AtomicLong;
|
||||||
|
|
||||||
@ -48,7 +38,7 @@ public class CalcIslandLevel {
|
|||||||
private final Runnable onExit;
|
private final Runnable onExit;
|
||||||
|
|
||||||
// Copy the limits hash map
|
// Copy the limits hash map
|
||||||
private final Map<Material, Integer> limitCount;
|
private final HashMap<Material, Integer> limitCount;
|
||||||
private final List<World> worlds;
|
private final List<World> worlds;
|
||||||
private final World world;
|
private final World world;
|
||||||
|
|
||||||
@ -69,7 +59,7 @@ public class CalcIslandLevel {
|
|||||||
this.addon = addon;
|
this.addon = addon;
|
||||||
this.island = island;
|
this.island = island;
|
||||||
this.world = island.getWorld();
|
this.world = island.getWorld();
|
||||||
this.limitCount = new EnumMap<>(addon.getSettings().getBlockLimits());
|
this.limitCount = new HashMap<>(addon.getSettings().getBlockLimits());
|
||||||
this.onExit = onExit;
|
this.onExit = onExit;
|
||||||
this.worlds = new ArrayList<>();
|
this.worlds = new ArrayList<>();
|
||||||
this.worlds.add(world);
|
this.worlds.add(world);
|
||||||
@ -103,7 +93,6 @@ public class CalcIslandLevel {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
queueid = Bukkit.getScheduler().scheduleSyncRepeatingTask(addon.getPlugin(), new Runnable() {
|
queueid = Bukkit.getScheduler().scheduleSyncRepeatingTask(addon.getPlugin(), new Runnable() {
|
||||||
@Override
|
|
||||||
public void run() {
|
public void run() {
|
||||||
for (int i = 0; i < 10; i++) {
|
for (int i = 0; i < 10; i++) {
|
||||||
if (q.size() == 0) {
|
if (q.size() == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user