SteamWar/BauSystem2.0
Archiviert
12
0

Update Depth message

Dieser Commit ist enthalten in:
yoyosource 2021-05-02 13:58:13 +02:00
Ursprung 11dac9ae42
Commit 1bf3b2c9b8

Datei anzeigen

@ -54,7 +54,7 @@ public class Depth {
});
bukkitTask = Bukkit.getScheduler().runTaskTimer(BauSystem.getInstance(), () -> {
if (TPSUtils.currentTick.get() - lastUpdate > 20) {
if (TPSUtils.currentTick.get() - lastUpdate > 10) {
bukkitTask.cancel();
Vector dimensions = maxVector.subtract(minVector);
@ -75,7 +75,7 @@ public class Depth {
DepthCounter.depthMap.remove(region);
}
}
}, 5, 5);
}, 1, 1);
}
public boolean update(List<Block> blocks) {