From 55dddab58dcafbdcda44bd8459c8f350bbd605c9 Mon Sep 17 00:00:00 2001 From: AnturK Date: Mon, 27 May 2019 13:25:27 +0200 Subject: [PATCH] Fixes examine on mindless humans (#44111) * Fixes examine on mindless humans * Update code/modules/mob/living/carbon/human/examine.dm Co-Authored-By: moo <11748095+ExcessiveUseOfCobblestone@users.noreply.github.com> --- 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 d7509b40c61..68a2f65dc92 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -272,7 +272,7 @@ msg += "" - if(HAS_TRAIT(user, TRAIT_SPIRITUAL) && src.mind.isholy) + if(HAS_TRAIT(user, TRAIT_SPIRITUAL) && mind?.isholy) msg += "[t_He] [t_has] a holy aura about [t_him].\n" SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, "religious_comfort", /datum/mood_event/religiously_comforted)