Add optional MySQL support for statistics storage
Build / build (push) Successful in 1m15s

This commit is contained in:
Michael Burgess
2026-08-07 06:09:24 -04:00
parent bcb603dadf
commit 1c16f9a83b
7 changed files with 128 additions and 25 deletions
@@ -42,7 +42,7 @@ public class BlockPartyPlugin extends JavaPlugin implements Listener {
this.sessionManager = new SessionManager();
this.soundUtil = new SoundUtil(this);
this.rewardManager = new RewardManager(this);
this.statsManager = new StatsManager(this);
this.statsManager = new StatsManager(this, configManager.getStorageSettings());
statsManager.init();
this.arenaManager = new ArenaManager(this);