From 4ce7340600252d350d832ddfbca828d894bcc9c3 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 19 Aug 2016 18:11:53 -0500 Subject: [PATCH] Corrected what was being sent to the get_app_id method --- cogs/steam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/steam.py b/cogs/steam.py index 4280d8e..ca90220 100644 --- a/cogs/steam.py +++ b/cogs/steam.py @@ -110,7 +110,7 @@ class Steam: return app_id = int(option[1]) except ValueError: - app_id = get_app_id(option[1].lower()) + app_id = get_app_id(game.lower()) url = "{}/ISteamUserStats/GetPlayerAchievements/v0001/?key={}&steamid={}&appid={}".format(base_url, self.key, steam_id, app_id) elif option[0] == "games":