Skip to content

Commit

Permalink
fix(stats): fix shard uptime 💀
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-737 authored Mar 26, 2024
1 parent 866ac33 commit f6c4c23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/slash/Information/stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ export default class Stats extends BaseCommand {
return {
name: `Shard #${shard.id} - ${Status[shard.status]}`,
value: stripIndents`\`\`\`elm
Ping: ${msToReadable(shard.ping)}ms
Uptime: ${shard.uptime}ms
Ping: ${shard.ping}ms
Uptime: ${shard.uptime ? msToReadable(shard.uptime) : '0 ms'}
Servers: ${shard.totalGuilds}
RAM Usage: ${shard.memUsage} MB
\`\`\`
Expand Down

0 comments on commit f6c4c23

Please sign in to comment.