Files
CHOMPStation2/code/game/gamemodes/sandbox/sandbox.dm
2014-06-22 18:10:56 -04:00

22 lines
539 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()
world << "<B>The current game mode is - Sandbox!</B>"
world << "<B>Build your own station with the sandbox-panel command!</B>"
/datum/game_mode/sandbox/pre_setup()
for(var/mob/M in player_list)
M.CanBuild()
return 1
/datum/game_mode/sandbox/post_setup()
..()
if(emergency_shuttle)
emergency_shuttle.auto_recall = 1