mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 09:05:11 +01:00
Merge branch 'master' of https://github.com/tgstation/tgstation into upstream-2025-11-12
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
PROCESSING_SUBSYSTEM_DEF(priority_effects)
|
||||
name = "Priority Status Effects"
|
||||
flags = SS_TICKER | SS_KEEP_TIMING | SS_NO_INIT
|
||||
wait = 2 // Not seconds - we're running on SS_TICKER, so this is ticks.
|
||||
flags = SS_KEEP_TIMING | SS_NO_INIT
|
||||
wait = 0.2 SECONDS // Same as SSfastprocess, but can be anything, assuming you refactor all high-priority status effect intervals and durations to be a multiple of it.
|
||||
priority = FIRE_PRIORITY_PRIORITY_EFFECTS
|
||||
stat_tag = "PEFF"
|
||||
|
||||
@@ -7,7 +7,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())
|
||||
///Currently active announcer. Starts as a type but gets initialized after traits are selected
|
||||
var/datum/centcom_announcer/announcer = /datum/centcom_announcer/default
|
||||
///A list of trait roles that should be protected from antag
|
||||
|
||||
Reference in New Issue
Block a user