From 058f8a7a7dc04bd9dcb26105b2a07e711fad9b93 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Fri, 28 Feb 2025 10:58:44 +0000 Subject: [PATCH] fmt: feedback from clippy --- src/commands/count.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/count.rs b/src/commands/count.rs index c48a506..d51669e 100644 --- a/src/commands/count.rs +++ b/src/commands/count.rs @@ -72,8 +72,8 @@ pub mod committee { pub fn register() -> CreateCommand { CreateCommand::new("count") .description("Count Committee Members") - // All committee members have teh Manage Role permission - .default_member_permissions(serenity::model::Permissions::MANAGE_ROLES) + // All Committee members are able to add reactions to posts + .default_member_permissions(serenity::model::Permissions::ADD_REACTIONS) .add_option( CreateCommandOption::new(CommandOptionType::SubCommand, "committee", "List out the Committee Roles Numbers") .add_sub_option(CreateCommandOption::new(CommandOptionType::Boolean, "all", "List out all the Committee Roles Numbers").required(false)),