From e64233e6d81a75ccceb39d5ccec076c69b6ccafb Mon Sep 17 00:00:00 2001 From: kozabrada123 <59031733+kozabrada123@users.noreply.github.com> Date: Sat, 29 Jul 2023 16:06:35 +0000 Subject: [PATCH] Update src/types/utils/rights.rs Co-authored-by: SpecificProtagonist --- src/types/utils/rights.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/utils/rights.rs b/src/types/utils/rights.rs index 666cf17..bab08db 100644 --- a/src/types/utils/rights.rs +++ b/src/types/utils/rights.rs @@ -86,7 +86,7 @@ bitflags! { const DEBTABLE = 1 << 31; /// Can earn money using monetization features in guilds that have [`MonetizationEnabled`](crate::types::types::guild_configuration::GuildFeatures::MonetizationEnabled) const CREDITABLE = 1 << 32; - /// Can kick or ban guild or group DM members in the guilds/groups where they have KICK_MEMBERS or BAN_MEMBERS + /// Can kick or ban guild or group DM members in the guilds/groups where they have [`KICK_MEMBERS`](crate::types::PermissionFlags::KICK_MEMBERS) or [`BAN_MEMBERS`](crate::types::PermissionFlags::BAN_MEMBERS) const KICK_BAN_MEMBERS = 1 << 33; /// Can leave the guilds or group DMs that they joined on their own (one can always leave a guild or group DMs where they have been force-added) const SELF_LEAVE_GROUPS = 1 << 34;