mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
24 lines
582 B
Plaintext
24 lines
582 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 player_list)
|
|
M.CanBuild()
|
|
return 1
|
|
|
|
/datum/game_mode/sandbox/process()
|
|
for(var/mob/M in player_list)
|
|
if(M.sandbox == null)
|
|
M.CanBuild()
|
|
return 1
|
|
|
|
/datum/game_mode/sandbox/post_setup()
|
|
..()
|
|
if(emergency_shuttle)
|
|
emergency_shuttle.auto_recall = 1
|