My Discord bot can only react to reactions added to messages sent after the bot started. It won't react if I add a reaction to an old message. How can I make it react to every reaction added, no matter when the message was sent?
@client.event
async def on_reaction_add(reaction, user):
print(str(reaction.emoji), str(user))
When I add a reaction to a message sent after the Bot started, it works just fine.
User#1234 added a reaction to a message
When I add a reaction to a message sent before the Bot started, it doesn't do anything.