From 519b629a2d51c2329c465d7bb6985ee85748cbc6 Mon Sep 17 00:00:00 2001 From: victormylle Date: Sun, 15 Nov 2020 01:38:32 +0100 Subject: [PATCH] Fixed small issue --- cogs/quiz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/quiz.py b/cogs/quiz.py index e364279..b880960 100644 --- a/cogs/quiz.py +++ b/cogs/quiz.py @@ -250,7 +250,7 @@ class Quiz(commands.Cog): try: message = await self.client.wait_for("message", check=lambda message: message.content.lower() == word['word'].lower(), timeout=self.timeout) - self.give_reward(message.author.id, word["id"]) + self.give_reward(message.author.id, word["reward"]) playerdblinker = PlayerDBLinker() embed.colour = discord.Colour.green() if playerdblinker.discordidused(message.author.id):