From 5db634f9cd52f024f493ef2c867b0851c647856e Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Mon, 25 Jul 2022 22:23:19 -0700 Subject: [PATCH] make stats look good --- commands/stats.js | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/commands/stats.js b/commands/stats.js index abf2b37..6b20f63 100644 --- a/commands/stats.js +++ b/commands/stats.js @@ -25,20 +25,22 @@ module.exports = { const data = ` \`\`\` - ******************************* - * Channels *${client.padding(client.channels.cache.size)}* - ******************************* - * Servers *${client.padding(client.guilds.cache.size)}* - ******************************* - * Users *${client.padding(client.users.cache.size)} - * ***************************** + \n 𝗤𝘂𝗮𝗿𝗸𝘀𝗕𝗼𝘁 𝗦𝘁𝗮𝘁𝗶𝘀𝘁𝗶𝗰𝘀 + ╔══════════════╦══════════════╗ + ║ Channels ║${client.padding(client.channels.cache.size)}║ + ╠══════════════╬══════════════╣ + ║ Servers ║${client.padding(client.guilds.cache.size)}║ + ╠══════════════╬══════════════╣ + ║ Users ║${client.padding(client.users.cache.size)}║ + ╚══════════════╩══════════════╝ \`\`\` ` const stats = new MessageEmbed() .setColor(client.config.EmbedColor) - .setTitle('Statistics') .setDescription(data) + + return interaction.send({ embeds: [stats] }) }, }, } \ No newline at end of file