mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-06-01 02:38:29 +02:00
15 lines
248 B
JavaScript
15 lines
248 B
JavaScript
module.exports = (socket) => {
|
|
|
|
function onDisconnection() {
|
|
if (socket.mcbot) {
|
|
socket.mcbot.end();
|
|
delete socket.mcbot;
|
|
}
|
|
}
|
|
|
|
|
|
socket.on('disconnect', onDisconnection);
|
|
socket.on('bot:disconnect', onDisconnection);
|
|
|
|
};
|