From 27bc76274bb76aabab9be4273a81908fa8f8a949 Mon Sep 17 00:00:00 2001 From: Kishor Ramanan Date: Sat, 20 Dec 2025 21:19:33 +0530 Subject: [PATCH] Change perms from Manage Message to Manage Guild to run utility: auto-reply cmd --- src/commands/utility.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/utility.rs b/src/commands/utility.rs index a598cf7..d346de0 100644 --- a/src/commands/utility.rs +++ b/src/commands/utility.rs @@ -27,7 +27,7 @@ struct GuildRecord { slash_command, prefix_command, guild_only, - default_member_permissions = "MANAGE_MESSAGES" + default_member_permissions = "MANAGE_GUILD" )] pub async fn auto_response( ctx: Context<'_>, @@ -68,7 +68,7 @@ pub async fn auto_response( slash_command, prefix_command, guild_only, - default_member_permissions = "MANAGE_MESSAGES" + default_member_permissions = "MANAGE_GUILD" )] pub async fn view_auto_responses(ctx: Context<'_>) -> Result<(), Error> { let guild_id = ctx @@ -109,7 +109,7 @@ pub async fn view_auto_responses(ctx: Context<'_>) -> Result<(), Error> { slash_command, prefix_command, guild_only, - default_member_permissions = "MANAGE_MESSAGES" + default_member_permissions = "MANAGE_GUILD" )] pub async fn delete_auto_response( ctx: Context<'_>, @@ -157,7 +157,7 @@ pub async fn delete_auto_response( slash_command, prefix_command, guild_only, - default_member_permissions = "MANAGE_MESSAGES" + default_member_permissions = "MANAGE_GUILD" )] pub async fn edit_auto_response( ctx: Context<'_>,