diff --git a/server/src/mindustry/server/ServerControl.java b/server/src/mindustry/server/ServerControl.java index 94c2cc9a02..aa2acdedfb 100644 --- a/server/src/mindustry/server/ServerControl.java +++ b/server/src/mindustry/server/ServerControl.java @@ -191,12 +191,7 @@ public class ServerControl implements ApplicationListener{ info("Selected next map to be @.", Strings.stripColors(map.name())); - play(true, () -> { - world.loadMap(map, map.applyRules(lastMode)); - if(Config.autoPause.bool() && autoPaused){ - Core.app.post(() -> state.set(State.paused)); - } - }); + play(true, () -> world.loadMap(map, map.applyRules(lastMode))); }else{ netServer.kickAll(KickReason.gameover); state.set(State.menu);