mirror of
https://github.com/arthur-pbty/New-discord-bot-coins.git
synced 2026-06-19 21:38:05 +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(() => {});
|
|
},
|
|
};
|