rom1504/MinecraftChat

is reading chat working?

syrianrue opened this issue · 1 comments

while using the chatterbox example, i noticed chat messages wouldnt get logged to the console. whispers would still work fine though. below is the function that should fire when chat updates but its not firing. is it just me or is it happening to others as well?

bot.on('chat', function(username, message) {
console.log(username + ": " + message);
});