mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
The rev icons bug might be fixed now. Removed the old logged say file as it is no longer used and contained questionable material. People should no longer spawn on the wizard station for a second at round start. Removed the old intercept vars as they have not been used in a good while. Blob is more or less back to its old state but still has the lava sprite, can we please get some new sprites for it. Fixed the door on the prison station, it can now actually be used again. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2163 316c924e-a436-60f5-8080-3fe189b3f50e
21 lines
502 B
Plaintext
21 lines
502 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
|