diff --git a/cogs/ReactionCog.py b/cogs/ReactionCog.py index 37509f1..f70660b 100644 --- a/cogs/ReactionCog.py +++ b/cogs/ReactionCog.py @@ -23,7 +23,7 @@ class ReactionCog(commands.Cog): await self.client.gameLoops.fiar(channel," place "+str(piece)+" "+str(place),user.id) elif self.client.funcs.monopolyReactionTest(channel,message): await self.client.gameLoops.runMonopoly(channel,"roll","#"+str(user.id)) - elif self.client.funcs.hangmanReactionTest(channel,message): + elif self.client.funcs.hangmanReactionTest(channel,message) and ord(reaction.emoji) in range(127462,127488): guess = chr(ord(reaction.emoji)-127397) await self.client.gameLoops.runHangman(channel,"#"+str(user.id),command="guess "+guess) def setup(client):