diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm index 7a607c72e77..018c37e4ad6 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm @@ -23,9 +23,9 @@ if (healths) if (stat != 2) switch(health) - if(150 to INFINITY) + if(125 to INFINITY) healths.icon_state = "health0" - if(100 to 150) + if(100 to 125) healths.icon_state = "health1" if(50 to 100) healths.icon_state = "health2" diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm index 5870ca062d8..ecfb45eaa8b 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm @@ -55,9 +55,9 @@ if (healths) if (stat != 2) switch(health) - if(125 to INFINITY) + if(150 to INFINITY) healths.icon_state = "health0" - if(100 to 125) + if(100 to 150) healths.icon_state = "health1" if(75 to 100) healths.icon_state = "health2" diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 440252a136c..47af54c0d0b 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1016,6 +1016,9 @@ var/global/list/brutefireloss_overlays = list("1" = image("icon" = 'icons/mob/sc adjustBruteLoss(-1) adjustFireLoss(-1) adjustToxLoss(-1) + else if(status_flags & FAKEDEATH) + blinded = 1 + stat = UNCONSCIOUS else if(resting) if(halloss > 0) adjustHalLoss(-3)