diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-11-14 12:06:37 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-11-14 12:07:26 +0100 |
commit | 65e122492bd9cdd74b0a993a53875834071df53e (patch) | |
tree | 2eacc7f99882a89ff081359d6ee7d84998a06e98 /public | |
parent | 8f3a28d965546f89cba27b23a3d7d545e889b4cb (diff) | |
download | server-65e122492bd9cdd74b0a993a53875834071df53e.tar.gz |
Chat log.
Diffstat (limited to 'public')
-rw-r--r-- | public/common/client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/common/client.js b/public/common/client.js index c516880..5df0413 100644 --- a/public/common/client.js +++ b/public/common/client.js @@ -251,7 +251,7 @@ function init_client(roles) { }); socket.on('chat', function (item) { - console.log("CHAT MESSAGE", JSON.stringify(item)); + console.log("CHAT", JSON.stringify(item)); update_chat(item[0], item[1], item[2], item[3]); }); |