From c6e61ffe527fbf9fc15fccf4eb92abec157c826a Mon Sep 17 00:00:00 2001 From: EternalllZM <43221983+EternalllZM@users.noreply.github.com> Date: Fri, 27 Feb 2026 12:56:09 -0600 Subject: [PATCH] change manage roles to manage permissions --- tickets/commands/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tickets/commands/admin.py b/tickets/commands/admin.py index 44ddcfbb..b1949d96 100644 --- a/tickets/commands/admin.py +++ b/tickets/commands/admin.py @@ -143,7 +143,7 @@ async def category( if not category.permissions_for(ctx.me).manage_channels: return await ctx.send(_("I need the `manage channels` permission to set this category")) if not category.permissions_for(ctx.me).manage_permissions: - return await ctx.send(_("I need `manage roles` enabled in this category")) + return await ctx.send(_("I need the `manage permissions` permission to set this category")) if not category.permissions_for(ctx.me).attach_files: return await ctx.send(_("I need the `attach files` permission to set this category")) if not category.permissions_for(ctx.me).view_channel: