I'm trying to make a Pokemon center command on request of a friend. The plan is to continue the dialogue whenever the user reacts with the 'A' emoji (:a:), so I'm trying to have the bot react to its own message first. Here's the code
@bot.command()
async def joy(ctx):
msg = await ctx.send(f'Welcome to our Pokémon Center!')
emoji = bot.get_emoji(706288524089098360)
await msg.add_reaction(msg,emoji)
Whenever I run it I get this error:
TypeError: add_reaction() takes 2 positional arguments but 3 were given