Added multiple string search to security records, fixed some evidence bag bugginess, fixed problem with the stamp remover.

This commit is contained in:
SkyMarshal
2011-12-30 09:15:04 -07:00
parent ea92743b36
commit 0fe2cdab96
4 changed files with 18 additions and 7 deletions
+2
View File
@@ -61,6 +61,8 @@
/obj/item/clothing/suit/storage/attackby(obj/item/weapon/W as obj, mob/user as mob)
if(W.w_class > 2 || src.loc == W )
return
if(istype(W,/obj/item/weapon/evidencebag) && src.loc != user)
return
if(src.contents.len >= 2)
user << "You have nowhere to place that"
return
+3
View File
@@ -102,6 +102,9 @@
user << "\blue You're a robot. No."
return //Robots can't interact with storage items.
if(istype(W,/obj/item/weapon/evidencebag) && src.loc != user)
return
if(src.loc == W)
return //Means the item is already in the storage item