Skip to content

Commit ea4002c

Browse files
committed
updates
1 parent de27172 commit ea4002c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reminders",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "Set reminders for things you need to do.",
55
"main": "dist/sharding.js",
66
"scripts": {

src/commands/info/bot.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ const command: Command = {
2121
const info = new Discord.EmbedBuilder()
2222
.setColor(client.config.embeds.default as ColorResolvable)
2323
.setAuthor({ name: client.user?.tag, iconURL: client.user?.displayAvatarURL({ extension: "png", forceStatic: false }), url: `https://discord.com/users/${client.user?.id}` })
24-
.setDescription(bot.description)
25-
.addFields (
26-
{ name: "📈 Version", value: bot.version, inline: true },
27-
{ name: "🟢 Online Since", value: `<t:${(Date.now() - client?.uptime).toString().slice(0, -3)}:f>`, inline: true },
28-
{ name: "🤖 Shard ID", value: `${client.shard.ids[0]}` },
29-
{ name: "📊 Guild Count", value: `**${guildCount}** (on this shard: ${client.guilds.cache.size})`, inline: true }
30-
)
24+
.setDescription(`
25+
${bot.description}\n\n
26+
📈 **Version**: ${bot.version}
27+
🟢 **Online Since**: <t:${(Date.now() - client?.uptime).toString().slice(0, -3)}:f>
28+
🤖 **Shard ID**: #${client.shard.ids[0]}
29+
📊 **Guild Count**: ${guildCount} (this shard: ${client.guilds.cache.size})
30+
`)
3131

3232
const buttons: any = new Discord.ActionRowBuilder()
3333
.addComponents (

0 commit comments

Comments
 (0)