From c56d8e714e9bd5067423eec3afcf4a17a8d1a313 Mon Sep 17 00:00:00 2001 From: MrMelbert Date: Thu, 2 Nov 2023 13:15:32 -0500 Subject: [PATCH] Whoops --- .../code/modules/mob/living/carbon/human/heart_rework/cpr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maplestation_modules/code/modules/mob/living/carbon/human/heart_rework/cpr.dm b/maplestation_modules/code/modules/mob/living/carbon/human/heart_rework/cpr.dm index 0824f94511ee..fd0b7e32f415 100644 --- a/maplestation_modules/code/modules/mob/living/carbon/human/heart_rework/cpr.dm +++ b/maplestation_modules/code/modules/mob/living/carbon/human/heart_rework/cpr.dm @@ -156,6 +156,6 @@ /datum/status_effect/cpr_applied/proc/is_effective(mob/checking) if(isnull(checking)) return FALSE - if(!get_organ_slot(ORGAN_SLOT_HEART)) // A heart is required for CPR to pump your heart + if(!checking.get_organ_slot(ORGAN_SLOT_HEART)) // A heart is required for CPR to pump your heart return FALSE return TRUE