Changes ED-209 Construction to work with new armor vests

Changes ED-209 construction to accept any type of the newer armor vests
rather than the old mostly deprecated armor vests.
This commit is contained in:
Yosh
2015-03-29 18:05:07 +01:00
parent 93746b9b67
commit 42cb430f02

View File

@@ -84,7 +84,7 @@
lasercolor = "r" lasercolor = "r"
else if( istype(W, /obj/item/clothing/suit/bluetag) ) else if( istype(W, /obj/item/clothing/suit/bluetag) )
lasercolor = "b" lasercolor = "b"
if( lasercolor || istype(W, /obj/item/clothing/suit/armor/vest) ) if( lasercolor || istype(W, /obj/item/clothing/suit/storage/vest) )
user.drop_item() user.drop_item()
del(W) del(W)
build_step++ build_step++