mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 17:52:36 +00:00
11 lines
228 B
Plaintext
11 lines
228 B
Plaintext
GLOBAL_LIST_EMPTY(clientmessages)
|
|
|
|
/proc/addclientmessage(ckey, message)
|
|
ckey = ckey(ckey)
|
|
if (!ckey || !message)
|
|
return
|
|
var/list/L = GLOB.clientmessages[ckey]
|
|
if(!L)
|
|
GLOB.clientmessages[ckey] = L = list()
|
|
L += message
|