mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
* Automatic changelog compile [ci skip]
* Update readme.md
* Automatic changelog compile [ci skip]
* merges TG into branch, ensures all fulp files are untouched and fixes dme
* does what the first commit says
* jobs fix
* Pubbystation
* Heliostation & Selenestation
* Update SeleneStation.dmm
* Revert "Update SeleneStation.dmm"
This reverts commit e618bb20a2.
* permabrig
* fix things haha awesome !
* stuff
* huds
* Update PubbyStation.dmm
* TGU
* roundend report
* edit
Co-authored-by: Changelogs <action@github.com>
Co-authored-by: Helianthus00 <64755361+Helianthus00@users.noreply.github.com>
15 lines
694 B
Plaintext
15 lines
694 B
Plaintext
GLOBAL_LIST_EMPTY(stickybanadminexemptions) //stores a list of ckeys exempted from a stickyban (workaround for a bug)
|
|
GLOBAL_LIST_EMPTY(stickybanadmintexts) //stores the entire stickyban list temporarily
|
|
GLOBAL_VAR(stickbanadminexemptiontimerid) //stores the timerid of the callback that restores all stickybans after an admin joins
|
|
|
|
/proc/init_smites()
|
|
var/list/smites = list()
|
|
for (var/_smite_path in subtypesof(/datum/smite))
|
|
var/datum/smite/smite_path = _smite_path
|
|
smites[initial(smite_path.name)] = smite_path
|
|
return smites
|
|
|
|
GLOBAL_LIST_INIT_TYPED(smites, /datum/smite, init_smites())
|
|
|
|
GLOBAL_VAR_INIT(admin_notice, "") // Admin notice that all clients see when joining the server
|