From ac5cec5cf2a64c647a499f6e3cbb4911e2b0836d Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 1 Nov 2022 01:43:42 -0400 Subject: [PATCH] Fixed menus pausing in multiplayer --- core/src/mindustry/core/Control.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/mindustry/core/Control.java b/core/src/mindustry/core/Control.java index 7e8e48dbeb..d5134d99a1 100644 --- a/core/src/mindustry/core/Control.java +++ b/core/src/mindustry/core/Control.java @@ -651,7 +651,9 @@ public class Control implements ApplicationListener, Loadable{ ui.chatfrag.hide(); }else if(!ui.paused.isShown() && !scene.hasDialog()){ ui.paused.show(); - state.set(State.paused); + if(!net.active()){ + state.set(State.paused); + } } }