From 994de0471e7032e8c1fc7d7621ecae880746a3f1 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 25 May 2022 17:04:22 -0400 Subject: feat: massEvidence command --- src/commands/info/botInfo.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/commands/info/botInfo.ts') 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 }, -- cgit