From 508e1fbfcb73168c29a6ebff58b05dd77361906c Mon Sep 17 00:00:00 2001 From: Charlie <69320440+hal9000PR@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:52:53 +0100 Subject: [PATCH] fixes the dead holding items (#18518) --- code/modules/mob/living/death.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index c4816209c87..1be3217208e 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -68,6 +68,7 @@ update_sight() update_action_buttons_icon() ADD_TRAIT(src, TRAIT_FLOORED, STAT_TRAIT) + ADD_TRAIT(src, TRAIT_HANDS_BLOCKED, STAT_TRAIT) // immobilized is superfluous as moving when dead ghosts you. update_damage_hud() update_health_hud() med_hud_set_health()