From fdb817dcc56a7925fdebc059a424427ada5a1eb9 Mon Sep 17 00:00:00 2001 From: Jack Edge Date: Tue, 8 Jan 2019 11:21:57 +0000 Subject: [PATCH] Dead people do not suffer hygiene problems, as they are busy decomposing :cl: coiax tweak: Dead bodies do not slowly have their hygiene decrease, as dead bodies just smell generally because of the decomposition. /:cl: We already have dead bodies rotting miasma, they don't need green stink clouds as well. --- code/modules/mob/living/carbon/human/life.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 7afcdd41fcb..e777ef51e42 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -39,7 +39,8 @@ //Stuff jammed in your limbs hurts handle_embedded_objects() - handle_hygiene() + if(stat != DEAD) + handle_hygiene() //Update our name based on whether our face is obscured/disfigured name = get_visible_name()