Files
bot_Tamiseur/eventsPlayer/emptyChannel.js
2023-04-23 19:30:04 +02:00

8 lines
309 B
JavaScript

module.exports = {
name: 'emptyChannel',
async execute(queue, track) {
// Emitted when the voice channel has been empty for the set threshold
// Bot will automatically leave the voice channel with this event
queue.metadata.channel.send(`Je quitte le vocal car il est vide depuis trop longtemps.`)
}
}