Files
Aurora.3/code/controllers/subsystems/initialization/map_finalization.dm
Fluffy 63acc59d1e Removed away_mission deprecated system (#20445)
Removed away_mission deprecated system, made initialization a little
faster.

Made global uplink datum a GLOB.

Remember to purge
https://github.com/Aurorastation/Aurora.3/wiki/Dynamic-Maps
2025-02-09 12:09:11 +00:00

16 lines
496 B
Plaintext

// The area list is put together here, because some things need it early on. Turrets controls, for example.
SUBSYSTEM_DEF(finalize)
name = "Map Finalization"
flags = SS_NO_FIRE | SS_NO_DISPLAY
init_order = INIT_ORDER_MAPFINALIZE
/datum/controller/subsystem/finalize/Initialize(timeofday)
// Setup the global antag uplink. This needs to be done after SSatlas as it requires current_map.
GLOB.uplink = new
// This is dependant on markers.
populate_antag_spawns()
return SS_INIT_SUCCESS