mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-19 06:32:25 +00:00
* 125 commits merged from master * Converts a number of simple_animal mobs to the new format * Grammar fixes
25 lines
787 B
Plaintext
25 lines
787 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(timeofday)
|
|
generateHoloMinimaps()
|
|
. = ..()
|
|
|
|
/datum/controller/subsystem/holomaps/stat_entry(msg)
|
|
if (!Debug2)
|
|
return // Only show up in stat panel if debugging is enabled.
|
|
. = ..()
|