diff --git a/CHANGELOG.md b/CHANGELOG.md index 25b7224c06..9d5c51c220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,9 @@ released. ### Fixed +- Include `bypass_slowmode` in `Permissions.all`. + ([#3231](https://github.com/Pycord-Development/pycord/pull/3231)) + ### Deprecated ### Removed diff --git a/discord/permissions.py b/discord/permissions.py index fad9cdf1f7..2e7bcc392d 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -180,7 +180,7 @@ def all(cls: type[P]) -> P: """A factory method that creates a :class:`Permissions` with all permissions set to ``True``. """ - return cls(~(~1 << 51)) + return cls(~(~1 << 52)) @classmethod def all_channel(cls: type[P]) -> P: