mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-31 12:01:47 +00:00
14 lines
323 B
Plaintext
14 lines
323 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()
|
|
enabled = TRUE
|
|
return SS_INIT_SUCCESS
|