Files
CHOMPStation2/modular_chomp/code/modules/client/preferences_spawnpoints.dm
Darlantan 91fc31c6b4 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.
2022-11-25 19:56:59 -05:00

31 lines
721 B
Plaintext

/datum/spawnpoint/stationgateway
display_name = "Station gateway"
msg = "has completed translation from station gateway"
disallow_job = list(JOB_OUTSIDER)
/datum/spawnpoint/stationgateway/New()
..()
turfs = latejoin_gatewaystation
/datum/spawnpoint/vore
display_name = "Vorespawn - Prey"
msg = "has arrived on the station"
allow_offmap_spawn = TRUE
/datum/spawnpoint/vore/pred
display_name = "Vorespawn - Pred"
msg = "has arrived on the station"
/datum/spawnpoint/vore/New()
..()
turfs = latejoin
/datum/spawnpoint/plainspath
display_name = "Sif plains"
msg = "has checked in at the plains gate"
restrict_job = list(JOB_OUTSIDER)
/datum/spawnpoint/plainspath/New()
..()
turfs = latejoin_plainspath