mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-25 23:38:27 +02:00
18 lines
250 B
JavaScript
18 lines
250 B
JavaScript
module.exports = function(socket) {
|
|
|
|
|
|
socket.on('disconnect', function() {
|
|
if (socket.mcbot) {
|
|
socket.mcbot.end();
|
|
}
|
|
});
|
|
|
|
|
|
socket.on('bot:disconnect', function() {
|
|
if (socket.mcbot) {
|
|
socket.mcbot.end();
|
|
}
|
|
});
|
|
|
|
|
|
}; |