mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
25 lines
807 B
Plaintext
25 lines
807 B
Plaintext
//
|
|
// Holo-Minimaps Generation Subsystem handles initialization of the holo minimaps.
|
|
// Look in code/modules/holomap/generate_holomap.dm to find generateHoloMinimaps()
|
|
//
|
|
SUBSYSTEM_DEF(holomaps)
|
|
name = "HoloMiniMaps"
|
|
init_order = INIT_ORDER_HOLOMAPS
|
|
flags = SS_NO_FIRE
|
|
var/static/holomaps_initialized = FALSE
|
|
var/static/list/holoMiniMaps = list()
|
|
var/static/list/extraMiniMaps = list()
|
|
var/static/list/station_holomaps = list()
|
|
|
|
/datum/controller/subsystem/holomaps/Recover()
|
|
flags |= SS_NO_INIT // Make extra sure we don't initialize twice.
|
|
|
|
/datum/controller/subsystem/holomaps/Initialize()
|
|
generateHoloMinimaps()
|
|
return SS_INIT_SUCCESS
|
|
|
|
/datum/controller/subsystem/holomaps/stat_entry(msg)
|
|
if (!Debug2)
|
|
return // Only show up in stat panel if debugging is enabled.
|
|
return ..() //CHOMPEdit
|