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