Parkour implementation safety save 4

This is just a safety save in case the code gets too broken to fix.
This commit is contained in:
2023-04-14 14:45:59 +02:00
parent 8f77fc5910
commit 12789980c0
16 changed files with 475 additions and 550 deletions

View File

@ -191,10 +191,10 @@ public final class MiniGames extends JavaPlugin {
this.dropperConfiguration = new DropperConfiguration(this.getConfig());
this.parkourConfiguration = new ParkourConfiguration(this.getConfig());
this.dropperArenaPlayerRegistry = new DropperArenaPlayerRegistry();
this.dropperArenaHandler = new DropperArenaHandler();
this.dropperArenaHandler = new DropperArenaHandler(this.dropperArenaPlayerRegistry);
this.dropperArenaHandler.load();
this.parkourArenaHandler = new ParkourArenaHandler();
this.parkourArenaHandler = new ParkourArenaHandler(this.parkourArenaPlayerRegistry);
this.parkourArenaHandler.load();
PluginManager pluginManager = getServer().getPluginManager();