We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e77967f commit 9abcbe1Copy full SHA for 9abcbe1
src/modules/etc.ts
@@ -47,6 +47,7 @@ export class EtcModule extends Module {
47
48
@listener({ event: 'messageReactionAdd' })
49
async onReact(reaction: MessageReaction, member: GuildMember) {
50
+ if (reaction.message.author.id !== this.client.user?.id) return;
51
if (reaction.emoji.name !== DELETE_EMOJI) return;
52
if (member.id === this.client.user?.id) return;
53
0 commit comments