make stats look good

This commit is contained in:
SowinskiBraeden committed 2022-07-25 22:23:19 -07:00
1 parent 631a348717
commit 5db634f9cd
1 file changed
+10 -8
+10 -8
View File
@@ -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] })
},
},
}