mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 15:42:35 +00:00
What it says on the tin. IPIntel and BYOND account age relating panic bunker settings from TG. Also implements methods for potentially tagging VM users. Ontop of all of this, creates a spiffy UI for admins with R_SERVER to adjust the settings of the entire suite at runtime.
19 lines
432 B
Plaintext
19 lines
432 B
Plaintext
var/datum/controller/subsystem/ipintel/SSipintel
|
|
|
|
/datum/controller/subsystem/ipintel
|
|
name = "XKeyScore"
|
|
init_order = SS_INIT_MISC_FIRST
|
|
flags = SS_NO_FIRE
|
|
var/enabled = 0 //disable at round start to avoid checking reconnects
|
|
var/throttle = 0
|
|
var/errors = 0
|
|
|
|
var/list/cache = list()
|
|
|
|
/datum/controller/subsystem/ipintel/New()
|
|
NEW_SS_GLOBAL(SSipintel)
|
|
|
|
/datum/controller/subsystem/ipintel/Initialize()
|
|
enabled = 1
|
|
. = ..()
|