mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-03 22:12:38 +00:00
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
22 lines
528 B
Plaintext
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 |