diff --git a/src/Discord.Net.Core/Entities/ApplicationFlags.cs b/src/Discord.Net.Core/Entities/ApplicationFlags.cs
index 1ede4257d..0410f63b5 100644
--- a/src/Discord.Net.Core/Entities/ApplicationFlags.cs
+++ b/src/Discord.Net.Core/Entities/ApplicationFlags.cs
@@ -4,20 +4,31 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
-namespace Discord
+namespace Discord;
+
+///
+/// Represents public flags for an application.
+///
+public enum ApplicationFlags
{
- ///
- /// Represents public flags for an application.
- ///
- public enum ApplicationFlags
- {
- GatewayPresence = 1 << 12,
- GatewayPresenceLimited = 1 << 13,
- GatewayGuildMembers = 1 << 14,
- GatewayGuildMembersLimited = 1 << 15,
- VerificationPendingGuildLimit = 1 << 16,
- Embedded = 1 << 17,
- GatewayMessageContent = 1 << 18,
- GatewayMessageContentLimited = 1 << 19
- }
+ GatewayPresence = 1 << 12,
+
+ GatewayPresenceLimited = 1 << 13,
+
+ GatewayGuildMembers = 1 << 14,
+
+ GatewayGuildMembersLimited = 1 << 15,
+
+ VerificationPendingGuildLimit = 1 << 16,
+
+ Embedded = 1 << 17,
+
+ GatewayMessageContent = 1 << 18,
+
+ GatewayMessageContentLimited = 1 << 19,
+
+ ApplicationCommandBadge = 1 << 23,
+
+ ActiveApplication = 1 << 24
}
+