From 03d16d541d40430bf1c2d806c22edfb5643d015b Mon Sep 17 00:00:00 2001 From: Lumouille <144063653+Lumabots@users.noreply.github.com> Date: Fri, 17 Oct 2025 10:20:57 +0300 Subject: [PATCH] fix: update docstring for `mention_everyone` to include role mentions --- discord/permissions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/permissions.py b/discord/permissions.py index a097cde116..931d9aec95 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -419,7 +419,7 @@ def read_message_history(self) -> int: @flag_value def mention_everyone(self) -> int: - """:class:`bool`: Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel.""" + """:class:`bool`: Returns ``True`` if a user's ``@everyone``, ``@here`` or role mentions will mention in the text channel.""" return 1 << 17 @flag_value