From 2075e22ef174c2263eca01fd37faf05e8cd7d24a Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 12 Jul 2024 13:15:12 -0400 Subject: [PATCH] Fixed #10020 --- core/src/mindustry/input/DesktopInput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/input/DesktopInput.java b/core/src/mindustry/input/DesktopInput.java index 7077a1dfbc..86e635c357 100644 --- a/core/src/mindustry/input/DesktopInput.java +++ b/core/src/mindustry/input/DesktopInput.java @@ -57,7 +57,7 @@ public class DesktopInput extends InputHandler{ public long lastCtrlGroupSelectMillis; boolean showHint(){ - return ui.hudfrag.shown && Core.settings.getBool("hints") && selectPlans.isEmpty() && + return ui.hudfrag.shown && Core.settings.getBool("hints") && selectPlans.isEmpty() && !player.dead() && (!isBuilding && !Core.settings.getBool("buildautopause") || player.unit().isBuilding() || !player.dead() && !player.unit().spawnedByCore()); }