From 4fb136ee085b9219ae57d844bfe0c4999ea33219 Mon Sep 17 00:00:00 2001 From: Justin <14909116+ThatGuyJustin@users.noreply.github.com> Date: Thu, 27 Jun 2019 13:07:49 -0400 Subject: [PATCH] Adding missing permissions (#144) - Add Reactions - View Audit Log - Priority Speaker --- disco/types/permissions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/disco/types/permissions.py b/disco/types/permissions.py index 6246fbe..e60c120 100644 --- a/disco/types/permissions.py +++ b/disco/types/permissions.py @@ -8,6 +8,9 @@ class Permissions(object): ADMINISTRATOR = 1 << 3 MANAGE_CHANNELS = 1 << 4 MANAGE_GUILD = 1 << 5 + ADD_REACTIONS = 1 << 6 + VIEW_AUDIT_LOG = 1 << 7 + PRIORITY_SPEAKER = 1 << 8 READ_MESSAGES = 1 << 10 SEND_MESSAGES = 1 << 11 SEND_TSS_MESSAGES = 1 << 12