From bcaa4e509dd5fe176ebdea5f3d7692e962c83eb7 Mon Sep 17 00:00:00 2001 From: Adrer Date: Fri, 3 Nov 2023 02:31:42 +0100 Subject: [PATCH] CPR effectiveness messages now properly reflect effectiveness (#23106) * CPR effectiveness messages now properly reflect effectiveness * Update code/modules/mob/living/carbon/human/human_mob.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --------- Co-authored-by: Adrer Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --- code/modules/mob/living/carbon/human/human_mob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_mob.dm b/code/modules/mob/living/carbon/human/human_mob.dm index 7673794a69b..59efed9f05c 100644 --- a/code/modules/mob/living/carbon/human/human_mob.dm +++ b/code/modules/mob/living/carbon/human/human_mob.dm @@ -1709,7 +1709,7 @@ Eyes need to have significantly high darksight to shine unless the mob has the X SEND_SIGNAL(H, COMSIG_HUMAN_RECEIVE_CPR, (new_time SECONDS)) if(prob(5)) - if(timer_restored > 4 SECONDS) + if(timer_restored >= CPR_BREATHS_RESTORATION) to_chat(src, pick(effective_cpr_messages)) else to_chat(src, pick(ineffective_cpr_messages))