From da5cc6a8cce4386534c9d942411dd9a5ef5d1694 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 13 Feb 2018 21:57:44 -0500 Subject: [PATCH 1/2] Merge pull request #35618 from YPOQ/processdeaddiseasefix Fixes process_dead diseases not processing at all --- code/modules/mob/living/carbon/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index a36ad80045..6375950d34 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -254,7 +254,7 @@ if(prob(D.infectivity)) D.spread() - if(stat != DEAD && !D.process_dead) + if(stat != DEAD || D.process_dead) D.stage_act() //todo generalize this and move hud out