mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 22:11:53 +00:00
feat: Add new Permission PRIORITY_SPEAKER (#2698)
This commit is contained in:
parent
4ae58f66f4
commit
b38f537da8
1 changed files with 2 additions and 0 deletions
|
|
@ -148,6 +148,7 @@ class Permissions {
|
|||
* * `MANAGE_GUILD` (edit the guild information, region, etc.)
|
||||
* * `ADD_REACTIONS` (add new reactions to messages)
|
||||
* * `VIEW_AUDIT_LOG`
|
||||
* * `PRIORITY_SPEAKER`
|
||||
* * `VIEW_CHANNEL`
|
||||
* * `SEND_MESSAGES`
|
||||
* * `SEND_TTS_MESSAGES`
|
||||
|
|
@ -180,6 +181,7 @@ Permissions.FLAGS = {
|
|||
MANAGE_GUILD: 1 << 5,
|
||||
ADD_REACTIONS: 1 << 6,
|
||||
VIEW_AUDIT_LOG: 1 << 7,
|
||||
PRIORITY_SPEAKER: 1 << 8,
|
||||
|
||||
VIEW_CHANNEL: 1 << 10,
|
||||
SEND_MESSAGES: 1 << 11,
|
||||
|
|
|
|||
Loading…
Reference in a new issue