1client.reactionAddCommand({2 name: "Reaction Add",3 channel: "$channelId",4 code: `5 $log[$authorId just reacted with $reactionData[emoji] on $messagId!]6 `7});
1module.exports = {2 name: "Reaction Add",3 channel: "$channelId",4 type: "reactionAdd",5 code: `6 $log[$authorId just reacted with $reactionData[emoji] on $messageId!]7 `8};