Implement proper stop and not sleep on BauCommand.stop

This commit is contained in:
2026-06-17 21:13:57 +02:00
parent 48846a698f
commit c538cdbbd2
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);
};