mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 07:12:55 +00:00
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
11 lines
234 B
Plaintext
11 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
|