mirror of
https://github.com/KabKebab/GS13.git
synced 2026-03-24 12:12:58 +00:00
16 lines
334 B
Plaintext
16 lines
334 B
Plaintext
#define PATREONFILE "[global.config.directory]/patreons.txt"
|
|
|
|
GLOBAL_LIST_EMPTY(patreons)
|
|
|
|
/proc/load_patreons()
|
|
GLOB.patreons = list()
|
|
for(var/line in world.file2list(PATREONFILE))
|
|
if(!line)
|
|
continue
|
|
GLOB.patreons += ckey(line)
|
|
|
|
/proc/check_patreons(var/ckey)
|
|
if(!GLOB.patreons)
|
|
return FALSE
|
|
. = (ckey in GLOB.patreons)
|