¯\_(ツ)_/¯

This commit is contained in:
2019-04-26 03:51:58 +10:00
parent dbc507900c
commit 9019f9d82b

View File

@@ -19,7 +19,7 @@ module.exports = {
wss.on('connection', function connection(ws) {
ws.on('message', function incoming(message) {
if (message == "name")
ws.send({ name: dclient.user.username })
ws.send({ name: "dclient.user.username" })
ws.send(`something ${message}`);
});