From 0e3c4c097c9de2d69a2af0f5d273ce38bda998bb Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 11 Feb 2024 08:56:19 -0500 Subject: [PATCH] Fixed #9535 --- core/src/mindustry/input/MobileInput.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/src/mindustry/input/MobileInput.java b/core/src/mindustry/input/MobileInput.java index 54d2b3df2f..2d0fc1bec1 100644 --- a/core/src/mindustry/input/MobileInput.java +++ b/core/src/mindustry/input/MobileInput.java @@ -743,6 +743,11 @@ public class MobileInput extends InputHandler implements GestureListener{ queueCommandMode = false; } + //cannot rebuild and place at the same time + if(block != null){ + rebuildMode = false; + } + if(player.dead()){ mode = none; manualShooting = false;