im trying make code that will do something after ONE DEFINED USER react on message
def check2(m):
m.on_reaction_add('1️⃣', m.user_id)
return ..
await msg.add_reaction('1️⃣')
await msg.add_reaction("2️⃣")
await msg.add_reaction("3️⃣")
await msg.add_reaction("4️⃣")
await msg.add_reaction("5️⃣")
await msg.add_reaction("6️⃣")
await msg.add_reaction("7️⃣")
await msg.add_reaction("8️⃣")
await inter.bot.wait_for("raw_reaction_add", check=check2)```
but i cant rly understand how to do it correctly
