chomens-bot-js/commands/clearchatqueue.js

19 lines
350 B
JavaScript
Raw Normal View History

2022-11-20 07:22:15 -05:00
/* eslint-disable max-len */
2022-08-14 05:51:45 -04:00
module.exports = {
name: 'clearchatqueue',
description: 'Clears the bot\'s chat queue',
alias: ['ccq'],
usage: '',
trusted: 0,
2022-11-27 02:35:28 -05:00
execute: function (bot) {
if (bot.queue[0]) {
2022-11-27 02:35:28 -05:00
bot.chatQueue = []
}
},
2022-11-27 02:35:28 -05:00
discordExecute: function (bot) {
2022-08-14 05:51:45 -04:00
if (bot.queue[0]) {
2022-11-27 02:35:28 -05:00
bot.chatQueue = []
2022-08-14 05:51:45 -04:00
}
2022-11-27 02:35:28 -05:00
}
}