Remove some unused lists + Fix random/voidsuit Initialize (#2599)

Forgot to remove these lists when I moved them to SSicon_cache.
This commit is contained in:
Lohikar
2017-06-04 05:33:24 -05:00
committed by skull132
parent 264b12ce42
commit 5ce2fc79ef
2 changed files with 1 additions and 8 deletions

View File

@@ -13,18 +13,11 @@ var/datum/controller/subsystem/processing/overlays/SSoverlays
var/list/overlay_icon_cache
var/initialized = FALSE
// External overlay lists that are defined here for VV purposes.
var/list/holo_multiplier_cache
var/list/holo_adder_cache
/datum/controller/subsystem/processing/overlays/New()
NEW_SS_GLOBAL(SSoverlays)
LAZYINITLIST(overlay_icon_state_caches)
LAZYINITLIST(overlay_icon_cache)
LAZYINITLIST(holo_multiplier_cache)
LAZYINITLIST(holo_adder_cache)
/datum/controller/subsystem/processing/overlays/Initialize()
initialized = TRUE
Flush()