added reacting to other people reacting

This commit is contained in:
phixxy 2023-07-21 19:21:40 -07:00
parent 045131f00f
commit 9de7ac9ba2

View file

@ -1584,7 +1584,13 @@ async def reset(ctx):
else:
await ctx.channel.send("You don't have permission to do that.")
@bot.event
async def on_reaction_add(reaction, user):
if not random.randint(0,9):
message = reaction.message
emoji = reaction.emoji
await message.add_reaction(emoji)
@bot.event
async def on_message(ctx):