prettying up the title of each stat

This commit is contained in:
Luke Robles 2021-08-08 11:19:17 -07:00
parent cdd088aef1
commit c6910be54f

View File

@ -50,7 +50,7 @@ def get_player(player):
for stat in gameplay_stats:
# print(stat)
embed.add_field(name="**%s**" % stat.title(), value=stats_overview[stat]['displayValue'], inline=False)
embed.add_field(name="**%s**" % stats_overview[stat]['displayName'], value=stats_overview[stat]['displayValue'], inline=False)
# embed.add_field(name='Raw value', value=stats_overview[stat]['displayValue'], inline=True)
# embed.add_field(name='Global Percentile', value=stats_overview[stat]['percentile'], inline=True)
return embed