Renames "non-crew" to "outsider," provides external ID

-Renames "non-crew" to "outsider."
-Provides an external ID to outsiders, allowing PDA use.
-Improves grammar in outsider job description
-Reformats outsider to use a define for the job name, replaces hard-coded uses of "non-crew" with said define.
This commit is contained in:
Darlantan
2022-11-25 19:56:59 -05:00
parent 4085006fa4
commit 91fc31c6b4
6 changed files with 27 additions and 20 deletions

View File

@@ -41,7 +41,7 @@ var/list/spawntypes = list()
/datum/spawnpoint/arrivals
display_name = "Arrivals Shuttle"
msg = "will arrive to the station shortly by shuttle"
disallow_job = list("Non-Crew") //CHOMPEdit add
disallow_job = list(JOB_OUTSIDER) //CHOMPEdit add
/datum/spawnpoint/arrivals/New()
..()
@@ -67,7 +67,7 @@ var/list/spawntypes = list()
display_name = "Cryogenic Storage"
msg = "has completed cryogenic revival"
allowed_mob_types = JOB_CARBON
disallow_job = list("Non-Crew") //CHOMPEdit add
disallow_job = list(JOB_OUTSIDER) //CHOMPEdit add
/datum/spawnpoint/cryo/New()
..()
@@ -77,7 +77,7 @@ var/list/spawntypes = list()
display_name = "Cyborg Storage"
msg = "has been activated from storage"
allowed_mob_types = JOB_SILICON
disallow_job = list("Non-Crew") //CHOMPEdit add
disallow_job = list(JOB_OUTSIDER) //CHOMPEdit add
/datum/spawnpoint/cyborg/New()
..()
@@ -104,7 +104,7 @@ var/global/list/latejoin_tram = list()
/datum/spawnpoint/tram
display_name = "Tram Station"
msg = "will arrive to the station shortly by shuttle"
disallow_job = list("Non-Crew") //CHOMPEdit add
disallow_job = list(JOB_OUTSIDER) //CHOMPEdit add
/datum/spawnpoint/tram/New()
..()