Merge pull request #10113 from farie82/Cling-stasis

Cling regenerative stasis now appears as if the cling is dead on the med HUDs
This commit is contained in:
tigercat2000
2018-11-04 10:57:11 -08:00
committed by GitHub
3 changed files with 7 additions and 4 deletions
@@ -527,7 +527,7 @@
/datum/species/proc/handle_hud_icons_health_side(mob/living/carbon/human/H)
if(H.healths)
if(H.stat == DEAD)
if(H.stat == DEAD || (H.status_flags & FAKEDEATH))
H.healths.icon_state = "health7"
else
switch(H.hal_screwyhud)
@@ -546,7 +546,7 @@
/datum/species/proc/handle_hud_icons_health_doll(mob/living/carbon/human/H)
if(H.healthdoll)
if(H.stat == DEAD)
if(H.stat == DEAD || (H.status_flags & FAKEDEATH))
H.healthdoll.icon_state = "healthdoll_DEAD"
if(H.healthdoll.overlays.len)
H.healthdoll.overlays.Cut()