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