mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-15 20:22:07 +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>
53 lines
1.5 KiB
Plaintext
53 lines
1.5 KiB
Plaintext
/*
|
|
|
|
You look around.
|
|
|
|
There is nothing but naught about you.
|
|
|
|
You've come to the end of the world.
|
|
|
|
You get a feeling that you really shouldn't be here.
|
|
|
|
Ever.
|
|
|
|
But with all ends come beginnings.
|
|
|
|
As you turn to leave, you spot it out of the corner of your eye.
|
|
|
|
Your eye widen in wonder as you look upon the the legendary treasure.
|
|
|
|
After all these years of pouring through shitcode
|
|
your endevours have brought you to...
|
|
|
|
*/
|
|
|
|
/**
|
|
* THE GENESIS CALL
|
|
*
|
|
* THE VERY FIRST LINE OF DM CODE TO EXECUTE
|
|
* Ong this must be done after !!!EVERYTHING!!! else
|
|
* NO IFS ANDS OR BUTS
|
|
* it's a hack, not an example of any sort, and DEFINITELY should NOT be emulated
|
|
* IT JUST HAS TO BE LAST!!!!!!
|
|
* If you want to do something in the initialization pipeline
|
|
* FIRST RTFM IN /code/game/world.dm
|
|
* AND THEN NEVER RETURN TO THIS PLACE
|
|
*
|
|
*
|
|
*
|
|
* If you're still here, here's an explanation:
|
|
* BYOND loves to tell you about its loving spouse /global
|
|
* But it's actually having a sexy an affair with /static
|
|
* Specifically statics in procs
|
|
* Priority is given to these lines of code in REVERSE order of declaration in the .dme
|
|
* Which is why this file has a funky name
|
|
* So this is what we use to call world.Genesis()
|
|
* It's a nameless, no-op function, because it does absolutely nothing
|
|
* It exists to hold a static var which is initialized to null
|
|
* It's on /world to hide it from reflection
|
|
* Painful right? Good, now you share my suffering
|
|
* Please lock the door on your way out
|
|
*/
|
|
/world/proc/_()
|
|
var/static/_ = world.Genesis()
|