Skip to content

Commit 549c7ac

Browse files
committed
✨ Add bypass slowmode perm
1 parent d5d162a commit 549c7ac

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

discord/permissions.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,6 +680,14 @@ def pin_messages(self) -> int:
680680
"""
681681
return 1 << 51
682682

683+
@flag_value
684+
def bypass_slowmode(self) -> int:
685+
""":class:`bool`: Returns ``True`` if a user can bypass slowmode.
686+
687+
.. versionadded:: tbd
688+
"""
689+
return 1 << 52
690+
683691

684692
PO = TypeVar("PO", bound="PermissionOverwrite")
685693

0 commit comments

Comments
 (0)