Adds a new spawnpoint to spacefarers, the fuel depot. (#8850)

This commit is contained in:
tacoguy7765093
2024-09-01 19:33:33 -05:00
committed by GitHub
parent 9f42148ab1
commit 18f13ecec1
13 changed files with 3889 additions and 446 deletions

View File

@@ -4,6 +4,7 @@ GLOBAL_LIST_INIT(shell_module_blacklist, list(
))
GLOBAL_LIST_EMPTY(latejoin_gatewaystation)
GLOBAL_LIST_EMPTY(latejoin_plainspath)
GLOBAL_LIST_EMPTY(latejoin_fueldepot)
var/list/talk_sound_map = rlist(
list(

View File

@@ -32,3 +32,12 @@
/datum/spawnpoint/plainspath/New()
..()
turfs = GLOB.latejoin_plainspath
/datum/spawnpoint/fueldepot
display_name = "Fuel Depot"
msg = "woke up in the fuel depot"
restrict_job = list(JOB_OUTSIDER)
/datum/spawnpoint/fueldepot/New()
..()
turfs = GLOB.latejoin_fueldepot