mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
|
module.exports = {
|
||
|
name: 'clearchatqueue',
|
||
|
description: 'Clears the bot\'s chat queue',
|
||
|
alias: ['ccq'],
|
||
|
usage: '',
|
||
|
trusted: 0,
|
||
|
execute: function(bot) {
|
||
|
if (bot.queue[0]) {
|
||
|
bot.queue = [];
|
||
|
}
|
||
|
},
|
||
|
};
|