From cc115b8be8a85eb6a4a1e6be87fdad96933c1bba Mon Sep 17 00:00:00 2001 From: MixityMaxity <189351891+MixityMaxity@users.noreply.github.com> Date: Thu, 20 Nov 2025 21:38:44 +1100 Subject: [PATCH] Makes the Large Tank Controller name consistent (#31001) * Renames the built computer to "large tank control" * Renames the actual circuit to "large tank control" --- code/game/machinery/computer/atmos_controllers.dm | 1 + code/game/machinery/computer/buildandrepair.dm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/computer/atmos_controllers.dm b/code/game/machinery/computer/atmos_controllers.dm index 252ce34672a..d184566d139 100644 --- a/code/game/machinery/computer/atmos_controllers.dm +++ b/code/game/machinery/computer/atmos_controllers.dm @@ -286,6 +286,7 @@ GLOBAL_LIST_EMPTY(gas_sensors) return PROCESS_KILL /obj/machinery/computer/general_air_control/large_tank_control + name = "large tank control" circuit = /obj/item/circuitboard/large_tank_control // Map set vars diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm index 60f4b820663..1f1714e7c6f 100644 --- a/code/game/machinery/computer/buildandrepair.dm +++ b/code/game/machinery/computer/buildandrepair.dm @@ -486,7 +486,7 @@ origin_tech = "programming=3;bluespace=3;plasmatech=4" /obj/item/circuitboard/large_tank_control - board_name = "Atmospheric Tank Control" + board_name = "Large Tank Control" icon_state = "engineering" build_path = /obj/machinery/computer/general_air_control/large_tank_control origin_tech = "programming=2;engineering=3;materials=2"