mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-02-22 15:23:14 +01:00
Fix ConcurrentModificationException related to ping task on Folia
Affects issues: - Fixed #3844
This commit is contained in:
parent
83485a4747
commit
55f7557149
@ -87,7 +87,7 @@ public class BukkitPingCounter extends TaskSystem.Task implements Listener {
|
||||
this.dbSystem = dbSystem;
|
||||
this.serverInfo = serverInfo;
|
||||
startRecording = new ConcurrentHashMap<>();
|
||||
playerHistory = new HashMap<>();
|
||||
playerHistory = new ConcurrentHashMap<>();
|
||||
|
||||
Optional<PingMethod> loaded = loadPingMethod();
|
||||
if (loaded.isPresent()) {
|
||||
|
Loading…
Reference in New Issue
Block a user