This commit is contained in:
arthur
2024-06-25 12:15:45 +02:00
parent 515019f25d
commit 77673accb1
22 changed files with 4423 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
module.exports = {
name: "messageReactionAdd",
async execute(client, reaction) {
await reaction.message.react(reaction._emoji.name).catch(() => {});
},
};