mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-19 04:43:28 +02:00
9 lines
152 B
JavaScript
9 lines
152 B
JavaScript
module.exports = function(socket) {
|
|
|
|
socket.on('chat', function(data) {
|
|
if (socket.mcbot) {
|
|
socket.mcbot.chat(data.message);
|
|
}
|
|
});
|
|
|
|
}; |