diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 895db5fa69c..d32eb3cc557 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -203,7 +203,10 @@ L += src.contents for(var/obj/item/weapon/storage/S in src.contents) //Check for storage items L += get_contents(S) - + for(var/obj/item/clothing/suit/storage/S in src.contents)//Check for labcoats and jackets + L += get_contents(S) + for(var/obj/item/clothing/tie/storage/S in src.contents)//Check for holsters + L += get_contents(S) for(var/obj/item/weapon/gift/G in src.contents) //Check for gift-wrapped items L += G.gift if(istype(G.gift, /obj/item/weapon/storage))