notification button handling - dumb typo 😄

This commit is contained in:
ReaperOfVeriod
2025-08-04 11:23:09 +02:00
parent 53094f615f
commit e262300def
+1 -1
View File
@@ -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) {