mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-20 22:54:46 +00:00
* World Initialization Refactor * Update .github/CODEOWNERS * Update code/__HELPERS/global_lists.dm * Add logging for manually changing your targeted zone (#72814) See title. Surgery hud is exempt from this. Requested by @Mothblocks Signed-off-by: GitHub <noreply@github.com> Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: dragomagol <66640614+dragomagol@users.noreply.github.com> * eee * Update tgstation.dme --------- Signed-off-by: GitHub <noreply@github.com> Co-authored-by: Jordan Dominion <Cyberboss@users.noreply.github.com> Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com> Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com> Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: dragomagol <66640614+dragomagol@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
24 lines
818 B
Plaintext
24 lines
818 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 visiblity
|
|
*/
|
|
/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
|
|
//map_format = SIDE_MAP // SKYRAT EDIT - TODO: WALLENING - REMOVE THIS (hopefully the visual z-fighting issues will have been ironed out by then)
|
|
#ifdef FIND_REF_NO_CHECK_TICK
|
|
loop_checks = FALSE
|
|
#endif
|