From 0d14c0782b6058d59f7898a6c5d9c914749eab2a Mon Sep 17 00:00:00 2001 From: Zack Date: Sun, 19 Oct 2025 09:21:30 -0500 Subject: [PATCH] CE Blueprint Picture will now count for objective (#30635) * Update living.dm * Update living.dm --- code/modules/mob/living/living.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index e6c5445f72a..574f54113c0 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -489,7 +489,8 @@ L += get_contents(D.wrapped) for(var/obj/item/folder/F in contents) L += F.contents //Folders can't store any storage items. - + for(var/obj/item/organ/internal/headpocket/pocket in contents) + L += pocket.contents //Checks for items in headpockets return L /mob/living/proc/check_contents_for(A)