From 2ee199c20ba5feb36be3d550cd69cadb457b6279 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Fri, 3 Jan 2014 20:55:01 -0500 Subject: [PATCH] theft objective doesn't check suit storage and holsters. --- code/modules/mob/living/living.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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))