mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 02:32:20 +00:00
This commit overhauls the global.dm file, global_lists.dm file, and defines.dm file into a tree system based on -tg-. All defines have been split and distributed in code/__DEFINES/ Everything from global.dm and global_lists.dm has been split and distributed in code/_globalvars The _compile_options.dm file contains anything that absolutely, 100%, must be initialized before world.dm. Name definitions have been moved to code/_globalvars/lists/names.dm. Other things to note - All instances of something.z == 2/1/3/5 have been replaced with easily configurable defines, labeled ZLEVEL_. The map include file can override these by defining custom ones in it's file, as it is at the top of the tree.
14 lines
617 B
Plaintext
14 lines
617 B
Plaintext
/*
|
|
This folder is full of #define statements. They are similar to constants,
|
|
but must come before any code that references them, and they do not take up
|
|
memory the way constants do.
|
|
|
|
The values in this folder are NOT options. They are not for hosts to play with.
|
|
Some of the values are arbitrary and only need to be different from similar constants;
|
|
for example, the genetic mutation numbers in genetics.dm mean nothing, but MUST be distinct.
|
|
|
|
It is wise not to touch them unless you understand what they do, where they're used,
|
|
and most importantly,
|
|
how to undo your changes if you screw it up.
|
|
- Sayu
|
|
*/ |