From e262300def39b75b7f79039ffe504c160e8c67e9 Mon Sep 17 00:00:00 2001 From: ReaperOfVeriod Date: Mon, 4 Aug 2025 11:23:09 +0200 Subject: [PATCH] notification button handling - dumb typo :smile: --- events/interactionCreate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/interactionCreate.js b/events/interactionCreate.js index 869b892..4e75cc4 100644 --- a/events/interactionCreate.js +++ b/events/interactionCreate.js @@ -52,7 +52,7 @@ module.exports = { if (interaction.member.roles.cache.has(notifiRoleId)) { await interaction.reply({ content: 'you already have the notification role!', flags: MessageFlags.Ephemeral }); } else { - await interaction.member.roles.add(notifyRoleId); + await interaction.member.roles.add(notifiRoleId); await interaction.reply({ content: 'Thank you hope to see you soon in my streams!', flags: MessageFlags.Ephemeral }); } } catch (error) {