From 0181e8d81b58f2558c7105225344cb0a30e4f567 Mon Sep 17 00:00:00 2001 From: Majkl-J Date: Sat, 3 Dec 2022 17:52:08 +0100 Subject: [PATCH] Fixes inhand_holder --- code/modules/mob/living/inhand_holder.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/mob/living/inhand_holder.dm b/code/modules/mob/living/inhand_holder.dm index 6d3f2b90a30b..414bcb25951d 100644 --- a/code/modules/mob/living/inhand_holder.dm +++ b/code/modules/mob/living/inhand_holder.dm @@ -15,6 +15,12 @@ . = ..() if(weight > MOB_SIZE_SMALL) w_class = weight + 2 // rough conversion + if(clothing_layer) + alternate_worn_layer = clothing_layer + if(held_icon) + mob_overlay_icon = held_icon + if(worn_state) + item_state = worn_state if(lh_icon) lefthand_file = lh_icon if(rh_icon)