So far I've made the bot answer to the command but now I want the bot to reply once somebody has reacted, this is the code I have tried:
@client.command()
async def war(ctx):
embed = discord.Embed(title='War', description='You are starting a war, do you want to continue?', color=0x00000)
msg = await ctx.send(embed=embed)
await msg.add_reaction(emojigood)
await msg.add_reaction(emojibad)
async def on_reaction_add(reaction, user):
if reaction.emoji == emojigood:
embed = discord.Embed(title='War', description='Please now choose a country', color=0x00000)
await channel.send(embed=embed)