mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 01:34:01 +00:00
* Clean up subsystem Initialize(), require an explicit result returned, give a formal way to fail (for SSlua) * [PR for MIRROR PR] Changes for 16248 (#16277) * Merge skyrat changes, update SR SS's, and remove lobby_eye * Apply suggestions from code review Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * Update modular_skyrat/modules/autotransfer/code/autotransfer.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> * restore lobby_cam for now Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> Co-authored-by: Tastyfish <crazychris32@gmail.com> Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
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
|