I am trying to make the bot say something for every green check mark reaction added. I have got the bot waiting for reactions however it only allows one reaction from one user where I want it for a reaction added it will do something current code;
@commands.command(pass_context=True)
async def br(self, ctx):
msg = await self.Nao.say('Please the reaction I have added.')
await self.Nao.add_reaction(msg, '✅')
res = await self.Nao.wait_for_reaction('✅')
However I want it to to allow multiple reactions instead of one user. So for every reaction added it will say {USER.MENTION} added a reaction!