Files
Aurora.3/code/game/gamemodes/sandbox/sandbox.dm
rastaf.zero@gmail.com 0c5529a2de Bugfixes.
Also, changed minimal amount of chemical reactive from 1 to 0.1, this should fix several issues with chemistry and eating.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1728 316c924e-a436-60f5-8080-3fe189b3f50e
2011-06-25 16:22:48 +00:00

22 lines
528 B
Plaintext

/datum/game_mode/sandbox
name = "sandbox"
config_tag = "sandbox"
/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