From a7557eb27e0bb7dc6b6dfc99d396ca889db83949 Mon Sep 17 00:00:00 2001 From: Bm0n <92271472+Bm0n@users.noreply.github.com> Date: Sun, 24 Nov 2024 09:26:18 -0500 Subject: [PATCH] Unreverts Updates the technical names of BoxStation and DeltaStation (#27431) * init * sql --------- Co-authored-by: Bmon --- code/modules/mapping/station_datums.dm | 4 ++-- tools/pr_sql/27431/script.sql | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 tools/pr_sql/27431/script.sql diff --git a/code/modules/mapping/station_datums.dm b/code/modules/mapping/station_datums.dm index b74e7d5c3e0..7ccc0d3633d 100644 --- a/code/modules/mapping/station_datums.dm +++ b/code/modules/mapping/station_datums.dm @@ -1,6 +1,6 @@ /datum/map/boxstation fluff_name = "NSS Cyberiad" - technical_name = "Cyberiad" + technical_name = "BoxStation" map_path = "_maps/map_files/stations/boxstation.dmm" webmap_url = "https://webmap.affectedarc07.co.uk/maps/paradise/cyberiad/" welcome_sound = 'sound/AI/welcome_cyberiad.ogg' @@ -14,7 +14,7 @@ /datum/map/deltastation fluff_name = "NSS Kerberos" - technical_name = "Delta" + technical_name = "DeltaStation" map_path = "_maps/map_files/stations/deltastation.dmm" webmap_url = "https://webmap.affectedarc07.co.uk/maps/paradise/deltastation/" welcome_sound = 'sound/AI/welcome_kerberos.ogg' diff --git a/tools/pr_sql/27431/script.sql b/tools/pr_sql/27431/script.sql new file mode 100644 index 00000000000..211e3d8426d --- /dev/null +++ b/tools/pr_sql/27431/script.sql @@ -0,0 +1,7 @@ +UPDATE round +SET map_name = 'DeltaStation' +WHERE map_name = 'Delta'; + +UPDATE round +SET map_name = 'BoxStation' +WHERE map_name = 'Cyberiad';