Browse Source

Add use_external_sounds permission

pull/9333/head
Andrin S 2 years ago
committed by GitHub
parent
commit
ee9e549836
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      discord/permissions.py

13
discord/permissions.py

@ -177,7 +177,7 @@ class Permissions(BaseFlags):
"""A factory method that creates a :class:`Permissions` with all
permissions set to ``True``.
"""
return cls(0b1111111111111111111111111111111111111111111)
return cls(0b1111111111111111111111111111111111111111111111)
@classmethod
def _timeout_mask(cls) -> int:
@ -268,7 +268,7 @@ class Permissions(BaseFlags):
def voice(cls) -> Self:
"""A factory method that creates a :class:`Permissions` with all
"Voice" permissions from the official Discord UI set to ``True``."""
return cls(0b1001000000000000011111100000000001100000000)
return cls(0b1001001000000000000011111100000000001100000000)
@classmethod
def stage(cls) -> Self:
@ -663,6 +663,14 @@ class Permissions(BaseFlags):
"""
return 1 << 42
@flag_value
def use_external_sounds(self) -> int:
""":class:`bool`: Returns ``True`` if a user can use sounds from other guilds.
.. versionadded:: 2.3
"""
return 1 << 45
def _augment_from_permissions(cls):
cls.VALID_NAMES = set(Permissions.VALID_FLAGS)
@ -779,6 +787,7 @@ class PermissionOverwrite:
use_embedded_activities: Optional[bool]
moderate_members: Optional[bool]
use_soundboard: Optional[bool]
use_external_sounds: Optional[bool]
def __init__(self, **kwargs: Optional[bool]):
self._values: Dict[str, Optional[bool]] = {}

Loading…
Cancel
Save