From 8378eb482a071a011425865eb4cda36e6aa44d09 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 29 Sep 2020 00:31:59 +0200 Subject: [PATCH] [MIRROR] Fixes whiteship console losing GPS signal (#1031) * Fixes whiteship console losing GPS signal (#53998) Deconstructing and rebuilding the whiteship console will switch it back to the GPS-less subtype. Added a new board and assigned it to the whiteship bridge console to remedy this. * Fixes whiteship console losing GPS signal Co-authored-by: Timberpoes --- .../objects/items/circuitboards/computer_circuitboards.dm | 5 +++++ code/modules/shuttle/white_ship.dm | 3 +++ 2 files changed, 8 insertions(+) diff --git a/code/game/objects/items/circuitboards/computer_circuitboards.dm b/code/game/objects/items/circuitboards/computer_circuitboards.dm index 145b7ce08c4..5cd510e79c0 100644 --- a/code/game/objects/items/circuitboards/computer_circuitboards.dm +++ b/code/game/objects/items/circuitboards/computer_circuitboards.dm @@ -258,6 +258,11 @@ icon_state = "generic" build_path = /obj/machinery/computer/shuttle/white_ship +/obj/item/circuitboard/computer/white_ship/bridge + name = "White Ship Bridge (Computer Board)" + icon_state = "generic" + build_path = /obj/machinery/computer/shuttle/white_ship/bridge + /obj/item/circuitboard/computer/white_ship/pod name = "Salvage Pod (Computer Board)" build_path = /obj/machinery/computer/shuttle/white_ship/pod diff --git a/code/modules/shuttle/white_ship.dm b/code/modules/shuttle/white_ship.dm index 8703d147879..605be53343d 100644 --- a/code/modules/shuttle/white_ship.dm +++ b/code/modules/shuttle/white_ship.dm @@ -7,6 +7,9 @@ /// Console used on the whiteship bridge. Comes with GPS pre-baked. /obj/machinery/computer/shuttle/white_ship/bridge + name = "White Ship Bridge Console" + desc = "Used to control the White Ship from the bridge. Emits a faint GPS signal." + circuit = /obj/item/circuitboard/computer/white_ship/bridge /obj/machinery/computer/shuttle/white_ship/bridge/Initialize(mapload, obj/item/circuitboard/C) . = ..()