Files
siliconsandGitHub d9c07d29e4 you look at your ARM and sigh (#7532)
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.
2026-02-14 12:31:35 +01:00

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