mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 09:54:52 +00:00
10 lines
234 B
Plaintext
10 lines
234 B
Plaintext
GLOBAL_LIST_EMPTY(clientmessages)
|
|
|
|
/proc/addclientmessage(var/ckey, var/message)
|
|
ckey = ckey(ckey)
|
|
if(!ckey || !message)
|
|
return
|
|
var/list/L = GLOB.clientmessages[ckey]
|
|
if(!L)
|
|
GLOB.clientmessages[ckey] = L = list()
|
|
L += message |