From 1ac8df78b9c45fa523e235d709ae424435cb2d82 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Tue, 11 Mar 2014 04:41:00 -0400 Subject: [PATCH] Fixes medhuds --- code/modules/mob/living/carbon/human/death.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm index 564bbf8085d..83e2dd355af 100644 --- a/code/modules/mob/living/carbon/human/death.dm +++ b/code/modules/mob/living/carbon/human/death.dm @@ -57,6 +57,11 @@ dizziness = 0 jitteriness = 0 + hud_updateflag |= 1 << HEALTH_HUD + hud_updateflag |= 1 << STATUS_HUD + + handle_hud_list() + //Handle species-specific deaths. if(species) species.handle_death(src)