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