From 4bfa3a59795e5cff15d5ec5965b32a4e51da0899 Mon Sep 17 00:00:00 2001 From: JimKil3 <47290811+JimKil3@users.noreply.github.com> Date: Mon, 11 Mar 2024 21:27:43 -0500 Subject: [PATCH] Changes the Solarian ship prefix from "SGSV" to "SCSV" (#2831) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Title. Just a find and replace from "SGSV" to "SCSV" "SolGov" isn't an official name for the Most Serene Solar and Intersolar Confederation, so "SolGov Space Vessel" doesn't really make sense. "Solar Confederation Space Vessel" does make sense, though. :cl: tweak: The Solarian ship prefix is now "SCSV," not "SGSV" /🆑 --- _maps/configs/solgov_chronicle.json | 2 +- _maps/configs/solgov_inkwell.json | 2 +- _maps/configs/solgov_paracelsus.json | 2 +- code/__HELPERS/names.dm | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/_maps/configs/solgov_chronicle.json b/_maps/configs/solgov_chronicle.json index 559abaaed233..5f58210edc2a 100644 --- a/_maps/configs/solgov_chronicle.json +++ b/_maps/configs/solgov_chronicle.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", "map_name": "Chronicle-class Sensor Frigate", - "prefix": "SGSV", + "prefix": "SCSV", "namelists": [ "SOLGOV", "SPACE", diff --git a/_maps/configs/solgov_inkwell.json b/_maps/configs/solgov_inkwell.json index e568efe94e79..e346ecf36d5a 100644 --- a/_maps/configs/solgov_inkwell.json +++ b/_maps/configs/solgov_inkwell.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", "map_name": "Inkwell-class Supply Freighter", - "prefix": "SGSV", + "prefix": "SCSV", "namelists": [ "SOLGOV", "SPACE", diff --git a/_maps/configs/solgov_paracelsus.json b/_maps/configs/solgov_paracelsus.json index c6c366b45ca5..231571de3c51 100644 --- a/_maps/configs/solgov_paracelsus.json +++ b/_maps/configs/solgov_paracelsus.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json", "map_name": "Paracelsus-class Medical Corvette", - "prefix": "SGSV", + "prefix": "SCSV", "namelists": [ "SOLGOV", "SPACE", diff --git a/code/__HELPERS/names.dm b/code/__HELPERS/names.dm index 46f60477b4ee..7dfe234b109c 100644 --- a/code/__HELPERS/names.dm +++ b/code/__HELPERS/names.dm @@ -253,6 +253,7 @@ GLOBAL_LIST_INIT(ship_faction_to_prefixes, list( "SUNS", ), "SolGov" = list( + "SCSV", "SGSV", "BSFSV", ),