diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm
index 55cb9042de25..206fda0c9762 100644
--- a/code/modules/mob/living/carbon/human/human_attackhand.dm
+++ b/code/modules/mob/living/carbon/human/human_attackhand.dm
@@ -59,12 +59,12 @@
if(cpr_cooldown < world.time)
revive_grace_period += 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"))
+ SPAN_HELPFUL("You perform CPR on [src]."))
+ balloon_alert(attacking_mob, "you perform cpr")
else
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"))
+ 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