From d6caea6aa044b4d0698e10491150c02a80c51ccf Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Thu, 7 Jan 2016 16:16:45 -0500 Subject: [PATCH] Strange Reagent Fix --- code/modules/reagents/newchem/medicine.dm | 3 +-- html/changelogs/strange-reagent-fox-mccloud.yml | 7 +++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/strange-reagent-fox-mccloud.yml diff --git a/code/modules/reagents/newchem/medicine.dm b/code/modules/reagents/newchem/medicine.dm index 432461bec93..af933f9b9b4 100644 --- a/code/modules/reagents/newchem/medicine.dm +++ b/code/modules/reagents/newchem/medicine.dm @@ -650,8 +650,7 @@ datum/reagent/strange_reagent/reaction_mob(var/mob/living/M as mob, var/method=T if(istype(M, /mob/living/simple_animal)) if(method == TOUCH) if(M.stat == DEAD) - M.health = M.maxHealth - M.update_revive() + M.revive() M.visible_message("[M] seems to rise from the dead!") if(istype(M, /mob/living/carbon)) if(method == INGEST) diff --git a/html/changelogs/strange-reagent-fox-mccloud.yml b/html/changelogs/strange-reagent-fox-mccloud.yml new file mode 100644 index 00000000000..7e12fd0f72e --- /dev/null +++ b/html/changelogs/strange-reagent-fox-mccloud.yml @@ -0,0 +1,7 @@ + +author: Fox McCloud + +delete-after: True + +changes: + - bugfix: "Fixes strange reagent not working on simple animals." \ No newline at end of file