diff --git a/DisCatSharp/Enums/Guild/Permission.cs b/DisCatSharp/Enums/Guild/Permission.cs
index d26b318c23..2ee5e000ef 100644
--- a/DisCatSharp/Enums/Guild/Permission.cs
+++ b/DisCatSharp/Enums/Guild/Permission.cs
@@ -12,7 +12,8 @@ public static class PermissionMethods
///
/// Gets the full permissions enum (long).
///
- internal static Permissions FullPerms { get; } = (Permissions)562949953421311L;
+ internal static Permissions FullPerms
+ => (Permissions)1125899906842623L;
///
/// Calculates whether this permission set contains the given permission.
@@ -77,7 +78,7 @@ public enum Permissions : long
/// Indicates all permissions are granted.
///
[PermissionString("All Permissions")]
- All = 562949953421311L,
+ All = 1125899906842623L,
///
/// Allows creation of instant channel invites.
@@ -377,7 +378,15 @@ public enum Permissions : long
/// Allows members to send polls.
///
[PermissionString("Send Polls")]
- SendPolls = 1L << 49
+ SendPolls = 1L << 49,
+
+ ///
+ /// Allows user-installed apps to send public responses.
+ /// When disabled, users will still be allowed to use their apps but the responses will be ephemeral.
+ /// This only applies to apps not also installed to the server.
+ ///
+ [PermissionString("Use External Apps")]
+ UseExternalApps = 1L << 50
}
///