mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-18 13:36:33 +01:00
16 lines
556 B
Plaintext
16 lines
556 B
Plaintext
//* This file is explicitly licensed under the MIT license. *//
|
|
//* Copyright (c) 2025 Citadel Station Developers *//
|
|
|
|
/**
|
|
* Contains all active bans for a player for quick lookup.
|
|
* * Will only contain one ban per relevant thing; e.g. if someone's somehow triple-jobbanned
|
|
* from captain, it'll only have one.
|
|
*/
|
|
/datum/player_ban_cache
|
|
var/total_bans
|
|
var/datum/player_ban/is_server_banned
|
|
/// id = entry
|
|
var/alist/datum/player_ban/currently_banned_role_ids
|
|
/// class = entry
|
|
var/alist/datum/player_ban/currently_banned_role_classes
|