make stats look good
This commit is contained in:
1 file changed
+10
-8
+10
-8
@@ -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] })
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in new issue
Block a user