theft objective doesn't check suit storage and holsters.

This commit is contained in:
ZomgPonies
2014-01-03 20:55:01 -05:00
parent 212039f0c3
commit 2ee199c20b
+4 -1
View File
@@ -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))