mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-22 08:11:06 +00:00
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
22 lines
535 B
Plaintext
22 lines
535 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()
|
|
for(var/mob/M in GLOB.player_list)
|
|
M.CanBuild()
|
|
return 1
|
|
|
|
/datum/game_mode/sandbox/post_setup()
|
|
..()
|
|
if(emergency_shuttle)
|
|
emergency_shuttle.no_escape = 1
|