mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 18:02:57 +00:00
9 lines
227 B
Plaintext
9 lines
227 B
Plaintext
var/list/clientmessages = list()
|
|
|
|
proc/addclientmessage(var/ckey, var/message)
|
|
ckey = ckey(ckey)
|
|
if (!ckey || !message)
|
|
return
|
|
if (!(ckey in clientmessages))
|
|
clientmessages[ckey] = list()
|
|
clientmessages[ckey] += message |