Tickets! and a lot of bug fixes
diff --git a/src/commands/settings/rolemenu.ts b/src/commands/settings/rolemenu.ts
index 02ab93e..e05485b 100644
--- a/src/commands/settings/rolemenu.ts
+++ b/src/commands/settings/rolemenu.ts
@@ -14,8 +14,8 @@
const check = (interaction: CommandInteraction) => {
const member = interaction.member as Discord.GuildMember;
- if (!member.permissions.has("MANAGE_ROLES"))
- throw Error("You must have the *Manage Roles* permission to use this command");
+ if (!member.permissions.has("ManageRoles"))
+ return "You must have the *Manage Roles* permission to use this command";
return true;
};