mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-03 04:56:32 +01:00
4733643f39
* cleanup SS API, give SSlua a proper way to error out * New SS_INIT_ system
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
|