From 2593ccdef420ef2a92dda9ec2651aab83e07ce95 Mon Sep 17 00:00:00 2001 From: Charlie <69320440+hal9000PR@users.noreply.github.com> Date: Thu, 8 Dec 2022 02:07:20 +0000 Subject: [PATCH] adds trait deaf when you go unconscious (#19832) --- code/modules/mob/living/stat_states.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/stat_states.dm b/code/modules/mob/living/stat_states.dm index d3e5be870eb..26d5664a0f2 100644 --- a/code/modules/mob/living/stat_states.dm +++ b/code/modules/mob/living/stat_states.dm @@ -12,6 +12,7 @@ add_attack_logs(src, null, "Fallen unconscious", ATKLOG_ALL) log_game("[key_name(src)] fell unconscious at [atom_loc_line(get_turf(src))]") set_stat(UNCONSCIOUS) + ADD_TRAIT(src, TRAIT_DEAF, STAT_TRAIT) ADD_TRAIT(src, TRAIT_FLOORED, STAT_TRAIT) ADD_TRAIT(src, TRAIT_IMMOBILIZED, STAT_TRAIT) ADD_TRAIT(src, TRAIT_HANDS_BLOCKED, STAT_TRAIT)