mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-06-13 01:23:31 +02:00
12 lines
188 B
JavaScript
12 lines
188 B
JavaScript
module.exports = (socket) => {
|
|
|
|
function onChat(data) {
|
|
if (socket.mcbot && socket.mcbot.entity) {
|
|
socket.mcbot.chat(data.message);
|
|
}
|
|
}
|
|
|
|
socket.on('chat', onChat);
|
|
|
|
};
|