Merge pull request 'Implement proper stop and not sleep on BauCommand.stop' (#435) from VelocityCore/BauCommand#stop into main

Reviewed-on: SteamWar/SteamWar#435
Reviewed-by: D4rkr34lm <dark@steamwar.de>
This commit is contained in:
2026-06-17 21:23:33 +02:00
2 changed files with 29 additions and 6 deletions
@@ -213,7 +213,7 @@ public class ServerStarter {
if (startingBau(owner)) return false;
Bauserver subserver = Bauserver.get(owner.getUniqueId());
if (subserver != null && subserver.isStarted()) subserver.stop();
if (subserver != null && subserver.isStarted()) subserver.sleep();
return !startingBau(owner);
};