mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 10:23:15 +00:00
* Add config entries for PR_ANNOUNCEMENTS_PER_ROUND and STATION_GOAL_BUDGET (#64368) Co-authored-by: Kyle Spier-Swenson <kyleshome@ gmail.com> * Add config entries for PR_ANNOUNCEMENTS_PER_ROUND and STATION_GOAL_BUDGET Co-authored-by: Tim <timothymtorres@gmail.com> Co-authored-by: Kyle Spier-Swenson <kyleshome@ gmail.com>
15 lines
425 B
Plaintext
15 lines
425 B
Plaintext
//config files
|
|
#define CONFIG_GET(X) global.config.Get(/datum/config_entry/##X)
|
|
#define CONFIG_SET(X, Y) global.config.Set(/datum/config_entry/##X, ##Y)
|
|
|
|
#define CONFIG_MAPS_FILE "maps.txt"
|
|
|
|
//flags
|
|
/// can't edit
|
|
#define CONFIG_ENTRY_LOCKED 1
|
|
/// can't see value
|
|
#define CONFIG_ENTRY_HIDDEN 2
|
|
|
|
/// Force the config directory to be something other than "config"
|
|
#define OVERRIDE_CONFIG_DIRECTORY_PARAMETER "config-directory"
|