mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 04:52:22 +00:00
Add the ADD_REACTIONS permission
This commit is contained in:
parent
cd9b391e2a
commit
dfeafbf5fa
2 changed files with 2 additions and 0 deletions
|
|
@ -155,6 +155,7 @@ class ClientDataResolver {
|
|||
* "ADMINISTRATOR",
|
||||
* "MANAGE_CHANNELS",
|
||||
* "MANAGE_GUILD",
|
||||
* "ADD_REACTIONS", // add reactions to messages
|
||||
* "READ_MESSAGES",
|
||||
* "SEND_MESSAGES",
|
||||
* "SEND_TTS_MESSAGES",
|
||||
|
|
|
|||
|
|
@ -265,6 +265,7 @@ const PermissionFlags = exports.PermissionFlags = {
|
|||
ADMINISTRATOR: 1 << 3,
|
||||
MANAGE_CHANNELS: 1 << 4,
|
||||
MANAGE_GUILD: 1 << 5,
|
||||
ADD_REACTIONS: 1 << 6,
|
||||
|
||||
READ_MESSAGES: 1 << 10,
|
||||
SEND_MESSAGES: 1 << 11,
|
||||
|
|
|
|||
Loading…
Reference in a new issue