From e0690c610ae01e59c5312dc3cf8a28dbb9f9adf6 Mon Sep 17 00:00:00 2001 From: Thalpy <33956696+Thalpy@users.noreply.github.com> Date: Sun, 2 Jun 2019 20:53:41 +0100 Subject: [PATCH] Added a check to ensure empath target isn't dead. --- code/modules/mob/living/carbon/human/examine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index ef792443a3..a88250f4c7 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -281,7 +281,7 @@ if(91.01 to INFINITY) msg += "[t_He] [t_is] a shitfaced, slobbering wreck.\n" - if(src != user && user.has_trait(TRAIT_EMPATH) && !appears_dead) + if(src != user && user.has_trait(TRAIT_EMPATH) && !appears_dead && !stat == DEAD) if (a_intent != INTENT_HELP) msg += "[t_He] seem[p_s()] to be on guard.\n" if (getOxyLoss() >= 10)