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