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';