Fix compiler errors for 1670 (#30874)

* stage 1

* hud alist

* mobs and parry

* stage ?

* we dont even need an alist here
This commit is contained in:
Toastical
2025-11-11 10:38:24 +00:00
committed by GitHub
parent 5988af9b7d
commit 51c47d8342
24 changed files with 104 additions and 55 deletions
@@ -9,7 +9,7 @@ PROCESSING_SUBSYSTEM_DEF(station)
/// A list of currently active station traits
var/list/station_traits = list()
/// Assoc list of trait type || assoc list of traits with weighted value. Used for picking traits from a specific category.
var/list/selectable_traits_by_types = list(STATION_TRAIT_POSITIVE = list(), STATION_TRAIT_NEUTRAL = list(), STATION_TRAIT_NEGATIVE = list())
var/alist/selectable_traits_by_types = alist(STATION_TRAIT_POSITIVE = list(), STATION_TRAIT_NEUTRAL = list(), STATION_TRAIT_NEGATIVE = list())
/datum/controller/subsystem/processing/station/Initialize()
SetupTraits()