From b386fc9d53d9214230a9cc3182cb3002f3beed92 Mon Sep 17 00:00:00 2001 From: Michael Krasnitski <42564254+mkrasnitski@users.noreply.github.com> Date: Tue, 30 May 2023 19:21:49 +0900 Subject: [PATCH] Add `Permissions::USE_EXTERNAL_SOUNDS` (#2451) --- src/model/permissions.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/model/permissions.rs b/src/model/permissions.rs index 41eb8d84c89..fee3d6c2560 100644 --- a/src/model/permissions.rs +++ b/src/model/permissions.rs @@ -343,6 +343,8 @@ bitflags::bitflags! { const VIEW_CREATOR_MONETIZATION_ANALYTICS = 1 << 41; /// Allows for using soundboard in a voice channel. const USE_SOUNDBOARD = 1 << 42; + /// Allows the usage of custom soundboard sounds from other servers. + const USE_EXTERNAL_SOUNDS = 1 << 45; /// Allows sending voice messages. const SEND_VOICE_MESSAGES = 1 << 46; }