From 8332a665e604f3a042f16079f5ce1bfab844a7c5 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Fri, 2 Apr 2021 22:05:29 -0500 Subject: [PATCH] Fix addRole confirmation message --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index bac5aa1..ff76895 100644 --- a/index.js +++ b/index.js @@ -183,7 +183,7 @@ async function addRole(message) { .then(userReaction => { const reaction = userReaction.first(); if (reaction.emoji.name === '👍') { - member.roles.add(role).then(message.reply(`\`${member.user}\` has been given the **${role}**`)).catch(() => { message.reply("It seems I don't have permissions to give that role, as it's likely above me :(") }); + member.roles.add(role).then(message.reply(`${member.user} has been given the **${role}** role!`)).catch(() => { message.reply("It seems I don't have permissions to give that role, as it's likely above me :(") }); } else { message.reply("I guess you won't be getting that role!"); }