Skip to content

Commit

Permalink
fix: status timer
Browse files Browse the repository at this point in the history
From seconds to hours
  • Loading branch information
DavDeDev committed Jul 29, 2023
1 parent d750588 commit 2336e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/StatusEmbed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class StatusEmbed implements APIEmbed {
this.fields.push(
{
name: 'Bot uptime',
value: `\`\`\`${(client.uptime ?? 1) / 1000} secs\`\`\``,
value: `\`\`\`${((client.uptime ?? 1) / 3600000).toFixed(0)} hrs\`\`\``,
// value: String(client.uptime),
inline: true,
},
Expand Down

0 comments on commit 2336e00

Please sign in to comment.