mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 07:46:20 +00:00
## About The Pull Request Fixes several errors to spelling, grammar, and punctuation. ## Why It's Good For The Game ## Changelog 🆑 spellcheck: fixed a few typos /🆑
25 lines
715 B
Plaintext
25 lines
715 B
Plaintext
//This file is just for the necessary /world definition
|
|
//Try looking in /code/game/world.dm, where initialization order is defined
|
|
|
|
/**
|
|
* # World
|
|
*
|
|
* Two possibilities exist: either we are alone in the Universe or we are not. Both are equally terrifying. ~ Arthur C. Clarke
|
|
*
|
|
* The byond world object stores some basic byond level config, and has a few hub specific procs for managing hub visibility
|
|
*/
|
|
/world
|
|
mob = /mob/dead/new_player
|
|
turf = /turf/open/space/basic
|
|
area = /area/space
|
|
view = "15x15"
|
|
hub = "Exadv1.spacestation13"
|
|
hub_password = "kMZy3U5jJHSiBQjr"
|
|
name = "/tg/ Station 13"
|
|
fps = 20
|
|
cache_lifespan = 0
|
|
map_format = SIDE_MAP
|
|
#ifdef FIND_REF_NO_CHECK_TICK
|
|
loop_checks = FALSE
|
|
#endif
|