botv12/plugins/rejoin.js
2024-11-19 20:05:19 -05:00

13 lines
334 B
JavaScript

import { createBot } from '../index.js'
export default function load (b) {
b._client.on('end', () => {
b.info(`Bot ${b.id} disconnected`)
for (const i in b.interval) {
clearInterval(b.interval[i])
}
setTimeout(() => {
b.info(`Re-connecting bot ${b.id}`)
createBot(b.host, b.id)
}, 5000)
})
}