diff --git a/cogs/steam.py b/cogs/steam.py index 259b258..0711b0b 100644 --- a/cogs/steam.py +++ b/cogs/steam.py @@ -83,7 +83,7 @@ class Steam: stuff_to_print = ['total_kills', 'total_deaths', 'total_wins', 'total_mvps'] stats = "\n".join( "{}: {}".format(d['name'], d['value']) for d in data['playerstats']['stats'] if d['name'] in stuff_to_print) - await self.bot.say("CS:GO Stats for user {}: \n```\n{}```".format(user, stats.title().replace("_", " "))) + await self.bot.say("CS:GO Stats for user {}: \n```\n{}```".format(member, stats.title().replace("_", " "))) def setup(bot):