mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-25 15:28:27 +02:00
9 lines
135 B
JavaScript
9 lines
135 B
JavaScript
module.exports = (socket) => {
|
|
|
|
socket.mcbot.on('end', () => {
|
|
socket.emit('bot:disconnect');
|
|
delete socket.mcbot;
|
|
});
|
|
|
|
};
|