mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
Replaces like 70-80% of 0 and such, as a side effect cleaned up a bunch of returns Edit: Most left out ones are in mecha which should be done in mecha refactor already Oh my look how clean it is Co-authored-by: TiviPlus <TiviPlus> Co-authored-by: Couls <coul422@gmail.com>
15 lines
327 B
Plaintext
15 lines
327 B
Plaintext
SUBSYSTEM_DEF(ipintel)
|
|
name = "XKeyScore"
|
|
init_order = INIT_ORDER_XKEYSCORE
|
|
flags = SS_NO_FIRE
|
|
var/enabled = FALSE //disable at round start to avoid checking reconnects
|
|
var/throttle = 0
|
|
var/errors = 0
|
|
|
|
var/list/cache = list()
|
|
|
|
/datum/controller/subsystem/ipintel/Initialize(timeofday, zlevel)
|
|
enabled = TRUE
|
|
. = ..()
|
|
|