From db7e03157e26a30a8b073041274ab8c34535aca9 Mon Sep 17 00:00:00 2001 From: Archie Date: Sun, 6 Jun 2021 19:25:55 -0300 Subject: [PATCH] Double var --- code/modules/mob/living/carbon/human/death.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm index e93eae25..69172745 100644 --- a/code/modules/mob/living/carbon/human/death.dm +++ b/code/modules/mob/living/carbon/human/death.dm @@ -53,11 +53,11 @@ INVOKE_ASYNC(is_devil(src), /datum/antagonist/devil.proc/beginResurrectionCheck, src) //watching someone die is traumatic - for(var/mob/living/carbon/human/H in oview(5, src)) - if(!HAS_TRAIT(H, TRAIT_APATHETIC)) - SEND_SIGNAL(H, COMSIG_ADD_MOOD_EVENT, "death", /datum/mood_event/deathsaw) + for(var/mob/living/carbon/human/C in oview(5, src)) + if(!HAS_TRAIT(C, TRAIT_APATHETIC)) + SEND_SIGNAL(C, COMSIG_ADD_MOOD_EVENT, "death", /datum/mood_event/deathsaw) if(prob(10)) //10% chance to pump adrenaline into their body - H.jitteriness += 5 + C.jitteriness += 5 /mob/living/carbon/human/proc/makeSkeleton() ADD_TRAIT(src, TRAIT_DISFIGURED, TRAIT_GENERIC)