Fixes centcom announcements referring to icebox as a station in orbit (#67528)

Fixes #67467
This commit is contained in:
Iamgoofball
2022-06-05 20:51:23 +01:00
committed by GitHub
parent 9f692d7768
commit 2719af0f05
3 changed files with 8 additions and 2 deletions
+1
View File
@@ -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": {
+5
View File
@@ -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"]
@@ -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"
)