mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-19 04:43:28 +02:00
21 lines
290 B
JavaScript
21 lines
290 B
JavaScript
module.exports = (socket) => {
|
|
|
|
|
|
socket.on('disconnect', () => {
|
|
if (socket.mcbot) {
|
|
socket.mcbot.end();
|
|
delete socket.mcbot;
|
|
}
|
|
});
|
|
|
|
|
|
socket.on('bot:disconnect', () => {
|
|
if (socket.mcbot) {
|
|
socket.mcbot.end();
|
|
delete socket.mcbot;
|
|
}
|
|
});
|
|
|
|
|
|
};
|