diff --git a/code/__DEFINES/logs.dm b/code/__DEFINES/logs.dm index 60524d05996..41502310e1b 100644 --- a/code/__DEFINES/logs.dm +++ b/code/__DEFINES/logs.dm @@ -30,7 +30,6 @@ #define INVESTIGATE_RESEARCH "research" #define INVESTIGATE_SYNDIE_CARGO "syndicate_cargo" #define INVESTIGATE_WIRES "wires" -#define INVESTIGATE_DEATHS "deaths" //This is an external call, "true" and "false" are how rust parses out booleans #define WRITE_LOG(log, text) rustg_log_write(log, text, "true") diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 23093ce1f4d..d00a3112251 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -1331,7 +1331,7 @@ GLOBAL_LIST_EMPTY(damage_icon_parts) /mob/living/carbon/human/update_unconscious_overlay() - if(stat == UNCONSCIOUS) + if(stat == UNCONSCIOUS && !HAS_TRAIT(src, TRAIT_FAKEDEATH)) var/mutable_appearance/sleep_effect = mutable_appearance('icons/effects/effects.dmi', "sleep", -SLEEP_LAYER, appearance_flags = KEEP_APART|RESET_TRANSFORM|RESET_COLOR) sleep_effect.pixel_z = 8 overlays_standing[SLEEP_LAYER] = sleep_effect