Files
CHOMPStation2/code/game/gamemodes/sandbox/sandbox.dm
mport2004@gmail.com 0f15fd1567 Few changes to how round start works.
Station Roles are picked before Syndie Roles unless it is nuke or wizard
People should no longer spawn in space because they did not get a job.
Heads and such should no longer get a role they should not have.
Rounds now have a minimum number of players required for it to start up.
Also the atmos pipes should stop exploding all over the place.


git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1974 316c924e-a436-60f5-8080-3fe189b3f50e
2011-08-03 05:59:10 +00:00

23 lines
551 B
Plaintext

/datum/game_mode/sandbox
name = "sandbox"
config_tag = "sandbox"
required_players = 0
/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 world)
if(M.client && M.client.authenticated)
M.CanBuild()
setup_sectors()
spawn_exporation_packs()
return 1
/datum/game_mode/sandbox/check_finished()
return 0
/datum/game_mode/sandbox/can_start()
return 1