From 5a4ef25fc57fdb36f29b34e14be78516010c9c2f Mon Sep 17 00:00:00 2001 From: jimmyl <70376633+mc-oofert@users.noreply.github.com> Date: Tue, 7 May 2024 02:40:54 +0200 Subject: [PATCH] temporarily soulless bodies dont appear as soulless on medhud (#83067) ## About The Pull Request temporarily soulless bodies dont appear as soulless on medhud like if you were playing deathmatch or something ## Why It's Good For The Game getting revived is good ## Changelog :cl: qol: temporarily soulless (deathmatch, etc) bodies dont appear as soulless on medhud /:cl: --- code/game/data_huds.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/data_huds.dm b/code/game/data_huds.dm index 0412aab33e9..c3c277e73c6 100644 --- a/code/game/data_huds.dm +++ b/code/game/data_huds.dm @@ -207,7 +207,7 @@ Medical HUD! Basic mode needs suit sensors on. if(HAS_TRAIT(src, TRAIT_XENO_HOST)) holder.icon_state = "hudxeno" else if(stat == DEAD || (HAS_TRAIT(src, TRAIT_FAKEDEATH))) - if(can_defib_client()) + if(HAS_TRAIT(src, TRAIT_MIND_TEMPORARILY_GONE) || can_defib_client()) holder.icon_state = "huddefib" else holder.icon_state = "huddead"