mirror of
https://github.com/arthur-pbty/New-discord-bot-coins.git
synced 2026-06-14 15:55:12 +02:00
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
module.exports = {
|
|
name: "messageReactionAdd",
|
|
async execute(client, reaction) {
|
|
await reaction.message.react(reaction._emoji.name).catch(() => {});
|
|
},
|
|
};
|