Skip to content

Commit

Permalink
imp: Show number of total accounts in stats command
Browse files Browse the repository at this point in the history
  • Loading branch information
seriaati committed Oct 12, 2024
1 parent 3afffd3 commit f681cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hoyo_buddy/cogs/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ async def stats_command(self, ctx: commands.Context) -> Any:

guild_count = len(self.bot.guilds)
await ctx.send(
f"Guilds: {guild_count}\nAccounts by region:\n```{acc_region_msg}```\nAccounts by game:\n```{acc_game_msg}```"
f"Guilds: {guild_count}\nAccounts by region:\n```{acc_region_msg}```\nAccounts by game:\n```{acc_game_msg}```\nTotal accounts: {len(accs)}"
)

# User metrics
Expand Down

0 comments on commit f681cea

Please sign in to comment.