chomens-bot-js/commands/clearchatqueue.js
2022-11-20 19:22:15 +07:00

13 lines
337 B
JavaScript

/* eslint-disable max-len */
module.exports = {
name: 'clearchatqueue',
description: 'Clears the bot\'s chat queue',
alias: ['ccq'],
usage: '',
trusted: 0,
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
if (bot.queue[0]) {
bot.chatQueue = [];
}
},
};