We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba93634 commit ad1d8e9Copy full SHA for ad1d8e9
code/modules/mob/living/carbon/human/examine.dm
@@ -128,7 +128,7 @@
128
if (length(status_examines))
129
. += status_examines
130
131
- var/appears_dead = FALSE
+ var/appears_dead = isobserver(user)
132
var/adjacent = get_dist(user, src) <= 1
133
if(stat != CONSCIOUS || (HAS_TRAIT(src, TRAIT_FAKEDEATH)))
134
if(!adjacent)
@@ -298,7 +298,8 @@
298
if(HAS_TRAIT(src, TRAIT_SOFT_CRITICAL_CONDITION))
299
msg += "[t_He] [t_is] barely conscious.\n"
300
301
- if(getorgan(/obj/item/organ/brain))
+
302
+ if(stat != DEAD && getorgan(/obj/item/organ/brain))
303
if(ai_controller?.ai_status == AI_STATUS_ON)
304
msg += "[span_deadsay("[t_He] do[t_es]n't appear to be [t_him]self.")]\n"
305
else if(!key)
0 commit comments