From 722ae1a136dcbce5cd3cdb0bf5ab49c970d2bdf4 Mon Sep 17 00:00:00 2001 From: zzzmike <85382350+zzzmike@users.noreply.github.com> Date: Sat, 20 Jul 2024 20:25:27 -0700 Subject: [PATCH] Update human_attackhand.dm --- code/modules/mob/living/carbon/human/human_attackhand.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index f675dfb1cafe..15a2ca54fed6 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -62,6 +62,7 @@ if(is_revivable() && stat == DEAD) if(cpr_cooldown < world.time) revive_grace_period += 7 SECONDS + cpr_cooldown = world.time + 7 SECONDS attacking_mob.visible_message(SPAN_NOTICE("[attacking_mob] performs CPR on [src]."), SPAN_HELPFUL("You perform CPR on [src].")) balloon_alert(attacking_mob, "you perform cpr") @@ -69,7 +70,6 @@ attacking_mob.visible_message(SPAN_NOTICE("[attacking_mob] fails to perform CPR on [src]."), SPAN_HELPFUL("You fail to perform CPR on [src]. Incorrect rhythm. Do it slower.")) balloon_alert(attacking_mob, "incorrect rhythm. do it slower") - cpr_cooldown = world.time + 7 SECONDS cpr_attempt_timer = 0 return 1