From 46045ef2cb0de6b1d996507fee674720326be420 Mon Sep 17 00:00:00 2001 From: plun1331 Date: Tue, 25 Jun 2024 14:09:06 -0700 Subject: [PATCH] Update permissions.py Signed-off-by: plun1331 --- discord/permissions.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/discord/permissions.py b/discord/permissions.py index 75b71d57cd..dd34fe46a4 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -626,6 +626,17 @@ def set_voice_channel_status(self) -> int: """ return 1 << 48 + @flag_value + def use_external_apps(self) -> int + """:class:`bool`: Returns ``True`` if a member's user-installed apps can show public responses. + Users will still be able to use user-installed apps, but responses will be ephemeral. + + This only applies to apps that are also not installed to the guild. + + .. versionadded:: 2.6 + """ + return 1 << 50 + PO = TypeVar("PO", bound="PermissionOverwrite")