mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2025-05-22 11:10:23 -04:00
Remove client chat exclusion from server
This commit is contained in:
parent
b0061cdeb7
commit
f9e302c08e
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ server.on('login', function(client) {
|
||||||
|
|
||||||
client.on('chat', function(data) {
|
client.on('chat', function(data) {
|
||||||
var message = '<' + client.username + '>' + ' ' + data.message;
|
var message = '<' + client.username + '>' + ' ' + data.message;
|
||||||
broadcast(message, client, client.username);
|
broadcast(message, null, client.username);
|
||||||
console.log(message);
|
console.log(message);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue