Files
GS13/hyperstation/code/modules/patreon/patreon.dm
QuoteFox 49f8093b5b Reward for Patreons!
Introduces alittle heart into chat, for the supporters!
2020-07-02 20:54:22 +01:00

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)