From c4033a85bd79e93d81c8c31724fe3f7dc542ad34 Mon Sep 17 00:00:00 2001 From: uraniummeltdown Date: Wed, 11 Jan 2017 09:56:16 +0400 Subject: [PATCH] added category for atmos consoles --- code/modules/research/designs/comp_board_designs.dm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/research/designs/comp_board_designs.dm b/code/modules/research/designs/comp_board_designs.dm index e7e14f2e4ba..25135f7a079 100644 --- a/code/modules/research/designs/comp_board_designs.dm +++ b/code/modules/research/designs/comp_board_designs.dm @@ -343,28 +343,31 @@ category = list("Computer Boards") datum/design/GAC - name = "Circuit Design (General Air Control)" + name = "Console Board (General Air Control)" desc = "Allows for the construction of circuit boards used to build a General Air Control Computer." id = "GAC" req_tech = list("programming" = 3, "magnets" = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 1000, "sacid" = 20) build_path = /obj/item/weapon/circuitboard/air_management + category = list("Computer Boards") datum/design/tank_control - name = "Circuit Design (Large Tank Control)" + name = "Console Board (Large Tank Control)" desc = "Allows for the construction of circuit boards used to build a Large Tank Control Computer." id = "tankcontrol" req_tech = list("programming" = 3, "magnets" = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 1000, "sacid" = 20) build_path = /obj/item/weapon/circuitboard/large_tank_control + category = list("Computer Boards") datum/design/AAC - name = "Circuit Design (Atmospheric Automations Console)" - desc = "Allows for the construction of circuit boards used to build an Atmospheric Autmations Console." + name = "Console Board (Atmospheric Automations Console)" + desc = "Allows for the construction of circuit boards used to build an Atmospheric Automations Console." id = "AAC" req_tech = list("programming" = 4, "magnets" = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 1000, "sacid" = 20) - build_path = /obj/item/weapon/circuitboard/atmos_automation \ No newline at end of file + build_path = /obj/item/weapon/circuitboard/atmos_automation + category = list("Computer Boards") \ No newline at end of file