Skip to content

Commit

Permalink
fix: fix stats command server count
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-737 committed May 31, 2024
1 parent dcd15a9 commit ba67f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/slash/Information/stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default class Stats extends BaseCommand {
name: 'Bot Stats',
value: stripIndents`
Up Since: ${time(upSince, 'R')}
Servers: ${guildCount}
Servers: ${guildCount.reduce((p, n) => p + n, 0)}
Members: ${memberCount.reduce((p, n) => p + n, 0)}`,
inline: true,
},
Expand Down

0 comments on commit ba67f4b

Please sign in to comment.