diff --git a/cogs/xp.py b/cogs/xp.py index d805d65..9d63eae 100644 --- a/cogs/xp.py +++ b/cogs/xp.py @@ -28,7 +28,7 @@ class Xp(commands.Cog): embed = discord.Embed(colour=discord.Colour.blue()) embed.set_author(name=target.display_name, icon_url=target.avatar_url) - embed.add_field(name="Aantal Berichten", value="{} ({}%)".format(int(target_stats[11]), perc)) + embed.add_field(name="Aantal Berichten", value="{:,} ({}%)".format(int(target_stats[11]), perc)) embed.add_field(name="Level", value=str(xp.calculate_level(target_stats[12]))) embed.add_field(name="XP", value="{:,}".format(int(target_stats[12]))) embed.set_footer(text="*Sinds Didier 2.0 Launch")