mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 18:26:35 +01:00
enable debugging being called twice specifically on my system (apparently adri and CI/CD and the actual fucking server doesn't give a shit) explodes DD yay.
15 lines
433 B
Plaintext
15 lines
433 B
Plaintext
GLOBAL_REAL(world_init_options, /datum/world_init_options)
|
|
|
|
/datum/world_init_options
|
|
/**
|
|
* If enabled, will force only loading the given station map and nothing else.
|
|
* * The station map is still allowed to load 'required' dependency maps, but optionals
|
|
* and overmaps should not load.
|
|
*/
|
|
var/load_only_station = FALSE
|
|
|
|
/datum/world_init_options/New()
|
|
#ifdef FASTBOOT_DISABLE_LATELOAD
|
|
load_only_station = TRUE
|
|
#endif
|