diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-05-25 17:04:22 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-05-25 17:04:22 -0400 |
commit | 994de0471e7032e8c1fc7d7621ecae880746a3f1 (patch) | |
tree | 93f0640b84f6603136e5842a65721431fe3298fc /src/commands/info/botInfo.ts | |
parent | bb7c1cc5fe91867781fe3cd734dc7d0f939eb619 (diff) | |
download | tanzanite-994de0471e7032e8c1fc7d7621ecae880746a3f1.tar.gz tanzanite-994de0471e7032e8c1fc7d7621ecae880746a3f1.tar.bz2 tanzanite-994de0471e7032e8c1fc7d7621ecae880746a3f1.zip |
feat: massEvidence command
Diffstat (limited to 'src/commands/info/botInfo.ts')
-rw-r--r-- | src/commands/info/botInfo.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commands/info/botInfo.ts b/src/commands/info/botInfo.ts index 3338824..e67ae5a 100644 --- a/src/commands/info/botInfo.ts +++ b/src/commands/info/botInfo.ts @@ -56,6 +56,7 @@ export default class BotInfoCommand extends BushCommand { { name: '**CPU Usage**', value: `${client.stats.cpu}%`, inline: true }, { name: '**Platform**', value: Platform[process.platform], inline: true }, { name: '**Commands Used**', value: `${client.stats.commandsUsed.toLocaleString()}`, inline: true }, + { name: '**Slash Commands Used**', value: `${client.stats.slashCommandsUsed.toLocaleString()}`, inline: true }, { name: '**Servers**', value: client.guilds.cache.size.toLocaleString(), inline: true }, { name: '**Users**', value: client.users.cache.size.toLocaleString(), inline: true }, { name: '**Discord.js Version**', value: discordJSVersion, inline: true }, |