Files
kiwistation/code/game/gamemodes/sandbox/sandbox.dm
T
Xhuis 566f89c9d9 Gamemode code improvement (#19354)
* Gamemode code improvement, initial commit

* Wraps up announce messages and removes Henderson

* Fixes an incomplete comment
2016-07-19 10:59:32 +12:00

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)