Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wdhdev committed Jan 23, 2025
1 parent de27172 commit ea4002c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reminders",
"version": "1.5.0",
"version": "1.6.0",
"description": "Set reminders for things you need to do.",
"main": "dist/sharding.js",
"scripts": {
Expand Down
14 changes: 7 additions & 7 deletions src/commands/info/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ const command: Command = {
const info = new Discord.EmbedBuilder()
.setColor(client.config.embeds.default as ColorResolvable)
.setAuthor({ name: client.user?.tag, iconURL: client.user?.displayAvatarURL({ extension: "png", forceStatic: false }), url: `https://discord.com/users/${client.user?.id}` })
.setDescription(bot.description)
.addFields (
{ name: "πŸ“ˆ Version", value: bot.version, inline: true },
{ name: "🟒 Online Since", value: `<t:${(Date.now() - client?.uptime).toString().slice(0, -3)}:f>`, inline: true },
{ name: "πŸ€– Shard ID", value: `${client.shard.ids[0]}` },
{ name: "πŸ“Š Guild Count", value: `**${guildCount}** (on this shard: ${client.guilds.cache.size})`, inline: true }
)
.setDescription(`
${bot.description}\n\n
πŸ“ˆ **Version**: ${bot.version}
🟒 **Online Since**: <t:${(Date.now() - client?.uptime).toString().slice(0, -3)}:f>
πŸ€– **Shard ID**: #${client.shard.ids[0]}
πŸ“Š **Guild Count**: ${guildCount} (this shard: ${client.guilds.cache.size})
`)

const buttons: any = new Discord.ActionRowBuilder()
.addComponents (
Expand Down

0 comments on commit ea4002c

Please sign in to comment.