I'm struck with a weird problem, here is the code :
embed_msg = await ctx.channel.send(embed=embed)
await embed_msg.add_reaction('')
await embed_msg.add_reaction('')
reaction, user = await self.bot.wait_for('reaction_add')
if str(reaction.emoji) == '':
print('GOOD ! ')
elif str(reaction.emoji) == '':
print('BAD !')
return
Problem is, when I start the bot and I try this, there's a 1/10 chance that this will work but 9/10 that the 'BAD !' condition trigger itself. I have no clues what to do about that
Thanks for the help