From 75e579562e67e9fed81add826eb8be590ee5709f Mon Sep 17 00:00:00 2001 From: Geeves Date: Sat, 27 Feb 2021 14:54:47 +0200 Subject: [PATCH] Stasis Fix (#11313) --- code/modules/mob/living/carbon/human/life.dm | 4 ++-- html/changelogs/geeves-stasis_check.yml | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/geeves-stasis_check.yml diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 9eaaae67e79..a373aa2f35e 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -52,8 +52,8 @@ voice = GetVoice() - //No need to update all of these procs if the guy is dead. - if(stat != DEAD) + //No need to update all of these procs if the guy is dead or in stasis + if(stat != DEAD && !InStasis()) //Updates the number of stored chemicals for powers handle_changeling() diff --git a/html/changelogs/geeves-stasis_check.yml b/html/changelogs/geeves-stasis_check.yml new file mode 100644 index 00000000000..e245fb76fd8 --- /dev/null +++ b/html/changelogs/geeves-stasis_check.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Stasis now works." \ No newline at end of file