Browse Source

Fix all_channel permissions

When the new permission for send_messages_in_threads was added, we added
the wrong bit. Instead of adding the bit as the most significant (37),
we added it as the last significant, which invalidated most of the
permissions defined by this method.
pull/2485/merge
James Gayfer 4 years ago
committed by GitHub
parent
commit
41d22f4312
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/permissions.py

2
discord/permissions.py

@ -173,7 +173,7 @@ class Permissions(BaseFlags):
:attr:`use_external_stickers`, :attr:`send_messages_in_threads` and
:attr:`request_to_speak` permissions.
"""
return cls(0b111101101100111111011111111111010100011)
return cls(0b111110110110011111101111111111101010001)
@classmethod
def general(cls: Type[P]) -> P:

Loading…
Cancel
Save