From 15b4c1f5fe5dc0ef14bb22e10712f91cdbe717cd Mon Sep 17 00:00:00 2001 From: Amunak Date: Mon, 22 Dec 2014 15:25:34 +0100 Subject: [PATCH] Fixes shield circuit board research designs --- code/modules/research/designs.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 0210b9b79b..40de21081d 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -325,19 +325,19 @@ datum/design/circuit/shield/AssembleDesignDesc() datum/design/circuit/shield/bubble name = "bubble" id = "shield_gen" - build_path = "/obj/machinery/shield_gen/external" + build_path = /obj/item/weapon/circuitboard/shield_gen datum/design/circuit/shield/hull name = "hull" id = "shield_gen_ex" - build_path = "/obj/machinery/shield_gen/external" + build_path = /obj/item/weapon/circuitboard/shield_gen_ex datum/design/circuit/shield/capacitor name = "capacitor" desc = "Allows for the construction of a shield capacitor circuit board." id = "shield_cap" req_tech = list("magnets" = 3, "powerstorage" = 4) - build_path = "/obj/machinery/shield_gen/external" + build_path = /obj/item/weapon/circuitboard/shield_cap /////////////////////////////////// //////////AI Module Disks//////////