1
0
Fork 0
mirror of synced 2024-06-29 03:30:57 +12:00

Changed up the printing method for each user's rating

This commit is contained in:
Phxntxm 2016-07-25 14:29:40 -05:00
parent 8cb7999ac0
commit 5d9a5efa25

View file

@ -65,7 +65,7 @@ class Stats:
member_id = x[0]
stats = x[1]
member = discord.utils.get(ctx.message.server.members,id=member_id)
fmt += "#{}) {} - {}".format(count,member.display_name,stats.get('rating'))
fmt += "#{}) {} (Rating: {})\n".format(count,member.display_name,stats.get('rating'))
count += 1
await self.bot.say("```{}```".format(fmt))