## About The Pull Request
okay so genesis actually needs to be first.
i did a bit of an experiment to see exactly what's called first.
`/world/proc/genesis_test` was just a `world.log << "[x]"` wrapper in
this test
top of the dme:
```dm
/world/proc/_a2()
var/static/_ = world.genesis_test("a2")
/world/proc/_z2()
var/static/_ = world.genesis_test("z2")
```
bottom of the dme:
```dm
/world/proc/_a1()
var/static/_ = world.genesis_test("a1")
/world/proc/_z1()
var/static/_ = world.genesis_test("z1")
```
here's the output:
```
Welcome BYOND! (5.0 Public Version 516.1659)
genesis testa2
genesis testz2
genesis testa1
genesis testz1
World loaded at 01:38:36!
```
so yeah, seems being included FIRST is correct.
to avoid any sort of potential accidental sorting/moving/priority
shenanigans, genesis itself is now in a `.dme` file, that is included
just below the header of the dme, before `// BEGIN_INTERNALS`
## Changelog
No user-facing changes. Or even noticeable by most coders.