mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-23 12:36:47 +01:00
cleans up config adds new role time.tracking system adds new panic bunker adds new VPN detection system unfucks the automated age gate does a bunch more cleanups refactors client security checks a little --------- Co-authored-by: VM_USER <VM_USER> Co-authored-by: silicons <no@you.cat>
9 lines
376 B
Plaintext
9 lines
376 B
Plaintext
//? roleban types
|
|
/// full server ban - currently just a shim to go to legacy isbanned, eventually just will go to server_ban.dm
|
|
#define BAN_ROLE_SERVER "server"
|
|
/// OOC + LOOC + deadchat ban
|
|
#define BAN_ROLE_OOC "ooc"
|
|
/// format job id to roleban ID - the use of a dash is deliberate due to job ids being formatted with underscores.
|
|
#define BAN_ROLE_JOB_ID(id) ("job-[id]")
|
|
|