diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 7812fd2bc13..d33dfc70641 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -171,6 +171,8 @@ 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/under/U in src.contents) //Check for jumpsuit accessories + L += U.contents return L /mob/living/proc/check_contents_for(A)