diff --git a/src/commands/stats.ts b/src/commands/stats.ts index ba3b28c..6454ba3 100644 --- a/src/commands/stats.ts +++ b/src/commands/stats.ts @@ -23,7 +23,7 @@ export default class Stats extends Command { embed.setTitle('Statistics'); embed.setThumbnail(this.client.user.avatarURL); embed.addField('Messages Seen', `${messages.value}`, true); - embed.addField('Command Executed', `${commands.value}`, true); + embed.addField('Commands Executed', `${commands.value}`, true); embed.addField('HTTP Requests Served', `${requests.value}`, true); embed.addField('Pages Sent', `${pages.value}`, true); embed.setFooter(this.client.user.username, this.client.user.avatarURL);