mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
28 lines
802 B
Plaintext
28 lines
802 B
Plaintext
/datum/game_mode/sandbox
|
|
name = "sandbox"
|
|
config_tag = "sandbox"
|
|
required_players = 0
|
|
|
|
uplink_welcome = "Syndicate Uplink Console:"
|
|
uplink_uses = 10
|
|
|
|
/datum/game_mode/sandbox/announce()
|
|
to_chat(world, "<B>The current game mode is - Sandbox!</B>")
|
|
to_chat(world, "<B>Build your own station with the sandbox-panel command!</B>")
|
|
|
|
/datum/game_mode/sandbox/pre_setup()
|
|
log_admin("Starting a round of sandbox.")
|
|
message_admins("Starting a round of sandbox.")
|
|
return 1
|
|
|
|
/datum/game_mode/sandbox/post_setup()
|
|
..()
|
|
for(var/mob/M in player_list)
|
|
M.CanBuild()
|
|
//if(emergency_shuttle)
|
|
// emergency_shuttle.always_fake_recall = 1
|
|
|
|
/datum/game_mode/sandbox/latespawn(var/mob/mob)
|
|
mob.CanBuild()
|
|
to_chat(mob, "<B>Build your own station with the sandbox-panel command!</B>")
|