This plugin does not have any permission nodes as it operates on a seperate server
What did I change?
Literally three lines of code.
--- ViaLimbo.java - Line 54 ---
+ double tickrate = serverProperties.getDefinedTicksPerSecond();
--- ViaLimbo.java - Line 67 ---
- Limbo.getInstance().getScheduler().runTask(this, () -> {
+ Limbo.getInstance().getScheduler().runTaskLater(this, () -> {
--- ViaLimbo.java - Line 69 ---
- });
+ }, (long) tickrate);
This prevents the race condition that occurs when the server is not fully loaded before the plugin tries to access it.