From 7c87a637a0b7150c802aa509ca58922ad988d4d8 Mon Sep 17 00:00:00 2001 From: quotefox Date: Thu, 10 Mar 2022 11:01:46 +0000 Subject: [PATCH] scanner hotfix ghosts scaring people smh. --- code/game/objects/items/devices/scanners.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index e1cc636ee..c8f3ef54f 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -135,7 +135,8 @@ GENE SCANNER if(ishuman(M)) var/mob/living/carbon/human/H = M - H.scan_animation() + if (user.stat == 0) //no more ghost scans + H.scan_animation() if(H.undergoing_cardiac_arrest() && H.stat != DEAD) to_chat(user, "Subject suffering from heart attack: Apply defibrillation or other electric shock immediately!")