From 16e1f172068ff894fda413b6a2a8ef4751cf9a97 Mon Sep 17 00:00:00 2001 From: Seth Scherer Date: Wed, 22 Dec 2021 16:02:29 -0500 Subject: [PATCH] Makes it clear that the health sensor cannot be activated while unsecured (#63529) --- code/modules/assembly/health.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/assembly/health.dm b/code/modules/assembly/health.dm index e01bcc8e982..8a2607fa341 100644 --- a/code/modules/assembly/health.dm +++ b/code/modules/assembly/health.dm @@ -71,5 +71,8 @@ /obj/item/assembly/health/attack_self(mob/user) . = ..() - to_chat(user, span_notice("You toggle [src] [src.scanning ? "off" : "on"].")) + if (secured) + balloon_alert(user, "scanning [scanning ? "disabled" : "enabled"]") + else + balloon_alert(user, span_warning("secure it first!")) toggle_scan()