From c009a22f63bae05a7a620422042032b4a2893396 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Fri, 2 Apr 2021 16:05:38 -0500 Subject: [PATCH] Fix embed name mismatch for roleDeleteEmbed --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 8c6c691..3cfee38 100644 --- a/index.js +++ b/index.js @@ -434,7 +434,7 @@ client.on('roleDelete', role => { } botLogsChannel = result.bot_logs_id; if (role.guild.channels.cache.get(botLogsChannel)) { - role.guild.channels.cache.get(botLogsChannel).send(messageReactionRemoveEmbed).catch(console.error); + role.guild.channels.cache.get(botLogsChannel).send(roleDeleteEmbed).catch(console.error); } }); });