diff --git a/_maps/icebox.json b/_maps/icebox.json index 3111fe96232..e3aa9f20fe2 100644 --- a/_maps/icebox.json +++ b/_maps/icebox.json @@ -42,6 +42,7 @@ "No Parallax": true } ], + "orbit_shift_replacement": "Attention crew, it appears that someone on your outpost has shifted your planet into more dangerous territory.", "minetype": "none", "job_changes": { "Cook": { diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index 745f0fdbba6..c570e8be706 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -35,6 +35,8 @@ var/job_changes = list() /// List of additional areas that count as a part of the library var/library_areas = list() + /// What message shows up when the orbit is shifted. + var/orbit_shift_replacement = "Attention crew, it appears that someone on your station has shifted your orbit into more dangerous territory." /** * Proc that simply loads the default map config, which should always be functional. @@ -166,6 +168,9 @@ log_world("map_config space_empty_levels is not a number!") return + if("orbit_shift_replacement" in json) + orbit_shift_replacement = json["orbit_shift_replacement"] + if ("minetype" in json) minetype = json["minetype"] diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index e37a859cb97..a37b7cf9772 100755 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -821,7 +821,7 @@ if(HACK_FUGITIVES) // Triggers fugitives, which can cause confusion / chaos as the crew decides which side help priority_announce( - "Attention crew, it appears that someone on your station has established an unexpected orbit with an unmarked ship in nearby space.", + "Attention crew, it appears that someone on your station has made unexpected communication with an unmarked ship in nearby space.", "[command_name()] High-Priority Update" ) @@ -832,7 +832,7 @@ if(HACK_THREAT) // Adds a flat amount of threat to buy a (probably) more dangerous antag later priority_announce( - "Attention crew, it appears that someone on your station has shifted your orbit into more dangerous territory.", + SSmapping.config.orbit_shift_replacement, "[command_name()] High-Priority Update" )