mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
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) {
|
|
if (bot.queue[0]) {
|
|
bot.queue = [];
|
|
}
|
|
},
|
|
};
|