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