Add total uses stat

This commit is contained in:
Dragon Fire
2024-07-02 01:16:09 -04:00
parent ed2e5bf017
commit 6139fccfb5
6 changed files with 23 additions and 3 deletions
+6 -1
View File
@@ -12,13 +12,18 @@ module.exports = class UsesCommand extends Command {
args: [
{
key: 'command',
type: 'command'
type: 'command',
default: ''
}
]
});
}
run(msg, { command }) {
if (!command) {
const uses = formatNumber(this.client.registry.totalUses);
return msg.say(`All commands have been used a total of **${uses}** times.`);
}
if (command.unknown || command.uses === undefined) {
return msg.reply('That command\'s usage stats aren\'t being tracked.');
}