Hello, I encountered an issue when I tried to listen to user reactions on messages :
A messageReactionAdd listener won't trigger if the message the reaction was added on was sent before the bot started.
Code where I ran my tests :
import {ArgsOf, On} from "@typeit/discord";
export abstract class Reaction {
@On("messageReactionAdd")
private async processEvent([reaction, user]: ArgsOf<"messageReactionAdd">) {
console.log("**REACTION**", reaction.emoji.name);
}
}
The console.log() is triggered on messages sent after the bot started, but not before.