From 61e774bc5a046186c8aea3daa0d9ccd7ba1fa174 Mon Sep 17 00:00:00 2001 From: "Dusty.P" Date: Wed, 6 Jun 2018 23:01:50 -0800 Subject: [PATCH] fixed book... maybe. --- src/imports/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/imports/utils.py b/src/imports/utils.py index 4374d7e..52215be 100644 --- a/src/imports/utils.py +++ b/src/imports/utils.py @@ -259,9 +259,9 @@ class Book: async def reaction_checker(): def check(reaction, user): if self._locked: - return str(reaction.emoji) in self._bot.book_emojis and user == self._calling_message.author + return str(reaction.emoji) in self._bot.book_emojis.values() and user == self._calling_message.author else: - return str(reaction.emoji) in self._bot.book_emojis + return str(reaction.emoji) in self._bot.book_emojis.values() await self.display_page()