Fixed rolemenu (should be usable now)
diff --git a/src/utils/confirmationMessage.ts b/src/utils/confirmationMessage.ts
index f5aaa6b..fc29b56 100644
--- a/src/utils/confirmationMessage.ts
+++ b/src/utils/confirmationMessage.ts
@@ -226,7 +226,8 @@
try {
component = await m.awaitMessageComponent({
filter: (i) =>
- i.user.id === this.interaction.user.id && (i.channel ? (i.channel!.id === this.interaction.channel!.id) : true),
+ i.user.id === this.interaction.user.id &&
+ (i.channel ? i.channel!.id === this.interaction.channel!.id : true),
time: 300000
});
} catch (e) {