chomens-bot-js/commands/clearchatqueue.js

20 lines
363 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
module.exports = {
name: 'clearchatqueue',
description: 'Clears the bot\'s chat queue',
alias: ['ccq'],
usage: '',
trusted: 0,
execute (bot) {
2022-12-05 04:54:50 -05:00
if (bot._chatQueue[0]) {
2022-11-27 02:35:28 -05:00
bot.chatQueue = []
2022-12-05 04:54:50 -05:00
bot._chatQueue = []
}
},
discordExecute (bot) {
2022-12-05 04:54:50 -05:00
if (bot._chatQueue[0]) {
2022-11-27 02:35:28 -05:00
bot.chatQueue = []
2022-12-05 04:54:50 -05:00
bot._chatQueue = []
2022-08-14 05:51:45 -04:00
}
2022-11-27 02:35:28 -05:00
}
}