owobot/plugins/rejoin.js

16 lines
362 B
JavaScript
Raw Normal View History

2024-07-27 02:39:18 -04:00
const index = require('../index.js')
module.exports = {
2024-08-12 05:13:32 -04:00
load: (b) => {
b._client.on('end', () => {
2024-08-12 05:13:32 -04:00
b.info(`Bot ${b.id} disconnected`)
for (const i in b.interval) {
clearInterval(b.interval[i])
}
setTimeout(() => {
2024-08-12 05:13:32 -04:00
b.info(`Re-connecting bot ${b.id}`)
index.createBot(b.host, b.id)
}, 5000)
})
}
2024-07-27 02:39:18 -04:00
}