FridayNightFunkinBoyfriendBot/src/modules/reconnect.js

15 lines
317 B
JavaScript
Raw Normal View History

2024-07-07 15:44:16 -04:00
const mc = require('minecraft-protocol')
function reconnect (bot, options) {
bot.reconnectDelay = options.reconnectDelay ?? 5000
bot.on('end', () => {
if (bot.reconnectDelay < 0) return
bot._client = mc.createClient(options)
bot.emit('init_client', bot._client)
})
}
module.exports = reconnect;