566f89c9d9
* Gamemode code improvement, initial commit * Wraps up announce messages and removes Henderson * Fixes an incomplete comment
17 lines
383 B
Plaintext
17 lines
383 B
Plaintext
/datum/game_mode/sandbox
|
|
name = "sandbox"
|
|
config_tag = "sandbox"
|
|
required_players = 0
|
|
|
|
announce_span = "info"
|
|
announce_text = "Build your own station... or just shoot each other!"
|
|
|
|
/datum/game_mode/sandbox/pre_setup()
|
|
for(var/mob/M in player_list)
|
|
M.CanBuild()
|
|
return 1
|
|
|
|
/datum/game_mode/sandbox/post_setup()
|
|
..()
|
|
SSshuttle.registerHostileEnvironment(src)
|