From 61f970b7ceb639b026404a8cd3124c48cecba673 Mon Sep 17 00:00:00 2001 From: Paul <90473506+pwbokie@users.noreply.github.com> Date: Mon, 1 Jul 2024 14:55:54 -0400 Subject: [PATCH] remove unusual entries from circuit imprinter, unify new entry & existing board as Air Sensor Monitor (#26013) Co-authored-by: Paul Merkamp --- .../game/machinery/computer/buildandrepair.dm | 2 +- .../research/designs/comp_board_designs.dm | 30 +++++++------------ 2 files changed, 11 insertions(+), 21 deletions(-) diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm index 12da6be70a5..304d71066c1 100644 --- a/code/game/machinery/computer/buildandrepair.dm +++ b/code/game/machinery/computer/buildandrepair.dm @@ -282,7 +282,7 @@ build_path = /obj/machinery/computer/atmoscontrol /obj/item/circuitboard/air_management - board_name = "Atmospheric Monitor" + board_name = "Air Sensor Monitor" icon_state = "engineering" build_path = /obj/machinery/computer/general_air_control diff --git a/code/modules/research/designs/comp_board_designs.dm b/code/modules/research/designs/comp_board_designs.dm index 634a1861e1b..9c8bcdd0fa1 100644 --- a/code/modules/research/designs/comp_board_designs.dm +++ b/code/modules/research/designs/comp_board_designs.dm @@ -32,6 +32,16 @@ build_path = /obj/item/circuitboard/aiupload category = list("Computer Boards") +/datum/design/air_management + name = "Console Board (Air Sensor Monitor)" + desc = "Allows for the construction of circuit boards used to build an Air Sensor Monitor." + id = "air_management" + req_tech = list("programming" = 2) + build_type = IMPRINTER + materials = list(MAT_GLASS = 1000) + build_path = /obj/item/circuitboard/air_management + category = list("Computer Boards") + /datum/design/atmosalerts name = "Console Board (Atmospheric Alerts)" desc = "Allows for the construction of circuit boards used to build an atmosphere alert console.." @@ -42,16 +52,6 @@ build_path = /obj/item/circuitboard/atmos_alert category = list("Computer Boards") -/datum/design/air_management - name = "Console Board (Atmospheric Monitor)" - desc = "Allows for the construction of circuit boards used to build an Atmospheric Monitor." - id = "air_management" - req_tech = list("programming" = 2) - build_type = IMPRINTER - materials = list(MAT_GLASS = 1000) - build_path = /obj/item/circuitboard/air_management - category = list("Computer Boards") - /datum/design/seccamera name = "Console Board (Camera Monitor)" desc = "Allows for the construction of circuit boards used to build camera monitors." @@ -322,16 +322,6 @@ build_path = /obj/item/circuitboard/teleporter category = list("Computer Boards") -/datum/design/GAC - 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) - build_path = /obj/item/circuitboard/air_management - category = list("Computer Boards") - /datum/design/tank_control name = "Console Board (Large Tank Control)" desc = "Allows for the construction of circuit boards used to build a Large Tank Control Computer."