CPR hotfix (#22319)

* add missing to_chats

* typo
This commit is contained in:
Luc
2023-09-09 23:30:20 -05:00
committed by GitHub
parent 03ab6ae4b5
commit e0bc923724
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -713,7 +713,7 @@
///From mob/living/carbon/human/do_suicide()
#define COMSIG_HUMAN_SUICIDE_ACT "human_suicide_act"
/// Sent from mob/living/carbon/human/do_cpr(): (mob/living/carbon/human/H, new_seconds_of_life)
#define COMSIG_HUMAN_RECEIVE_CPR "human_receieve_cpr"
#define COMSIG_HUMAN_RECEIVE_CPR "human_receive_cpr"
///From mob/living/carbon/human/attackedby(): (mob/living/carbon/human/attacker). Also found on species/disarm and species/harm
#define COMSIG_HUMAN_ATTACKED "human_attacked"
@@ -1752,9 +1752,9 @@ Eyes need to have significantly high darksight to shine unless the mob has the X
if(prob(5))
if(timer_restored > 4 SECONDS)
to_chat(pick(effective_cpr_messages))
to_chat(src, pick(effective_cpr_messages))
else
to_chat(pick(ineffective_cpr_messages))
to_chat(src, pick(ineffective_cpr_messages))
cpr_try_activate_bomb(H)