mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 04:41:27 +01:00
f498ce0659
* escape shuttle to subsystem * . * thank you github * axe this, unused * prevent comm computer server crash --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
18 lines
452 B
Plaintext
18 lines
452 B
Plaintext
/datum/game_mode/sandbox
|
|
name = "Sandbox"
|
|
config_tag = "sandbox"
|
|
required_players = 0
|
|
votable = 0
|
|
round_description = "Build your own station!"
|
|
extended_round_description = "You can use the sandbox-panel command to access build options."
|
|
|
|
/datum/game_mode/sandbox/pre_setup()
|
|
for(var/mob/M in GLOB.player_list)
|
|
M.CanBuild()
|
|
return 1
|
|
|
|
/datum/game_mode/sandbox/post_setup()
|
|
..()
|
|
if(emergency_shuttle)
|
|
SSemergency_shuttle.auto_recall = TRUE
|