diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index a6f795b6f3c..baa5cd95709 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -102,7 +102,7 @@ switch(M.a_intent) if(I_HELP) - if(H != src && istype(H) && (is_asystole() || (status_flags & FAKEDEATH) || failed_last_breath)) + if(H != src && istype(H) && (is_asystole() || (status_flags & FAKEDEATH) || failed_last_breath) && !src.on_fire) if (cpr) cpr = FALSE return diff --git a/html/changelogs/MouthOnFire.yml b/html/changelogs/MouthOnFire.yml new file mode 100644 index 00000000000..697cf5b6c94 --- /dev/null +++ b/html/changelogs/MouthOnFire.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "You will no longer attempt to resuscitate prone people who are on fire, instead they will be put out first."