From 42cb430f0240260c615e1815fd62db8a835ba0e8 Mon Sep 17 00:00:00 2001 From: Yosh Date: Sun, 29 Mar 2015 18:05:07 +0100 Subject: [PATCH] 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. --- code/game/machinery/bots/ed209bot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/bots/ed209bot.dm b/code/game/machinery/bots/ed209bot.dm index 639da55bf5..1e24893223 100644 --- a/code/game/machinery/bots/ed209bot.dm +++ b/code/game/machinery/bots/ed209bot.dm @@ -84,7 +84,7 @@ lasercolor = "r" else if( istype(W, /obj/item/clothing/suit/bluetag) ) 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() del(W) build_step++