Fix ConcurrentModificationException #112
@ -40,26 +40,10 @@ public class TNTTracer {
|
|||||||
private static final TraceCache traceCache = new TraceCache();
|
private static final TraceCache traceCache = new TraceCache();
|
||||||
|
|
||||||
public static void init(){
|
public static void init(){
|
||||||
Bukkit.getScheduler().runTaskTimer(BauSystem.getPlugin(), () -> {
|
Bukkit.getScheduler().runTaskTimer(BauSystem.getPlugin(), TNTTracer::run, 0, 20);
|
||||||
synchronized (synchronizer) {
|
|
||||||
synchronizer.notifyAll();
|
|
||||||
}
|
|
||||||
}, 1, 20);
|
|
||||||
Bukkit.getScheduler().runTaskAsynchronously(BauSystem.getPlugin(), () -> {
|
|
||||||
while (true) {
|
|
||||||
synchronized (synchronizer) {
|
|
||||||
try {
|
|
||||||
synchronizer.wait();
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
Thread.currentThread().interrupt();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
run();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void run(){
|
private static void run() {
|
||||||
for (Player p : Bukkit.getOnlinePlayers()) {
|
for (Player p : Bukkit.getOnlinePlayers()) {
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
String actionBar = "§e" + TraceManager.getAllTraces().size() + " §cTraces §e" + ShowManager.get(p).getShowRadius() + " §cRadius";
|
String actionBar = "§e" + TraceManager.getAllTraces().size() + " §cTraces §e" + ShowManager.get(p).getShowRadius() + " §cRadius";
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren