diff --git a/Sources/DiscordKitCommon/Objects/User+Flags.swift b/Sources/DiscordKitCommon/Objects/User+Flags.swift index e7e0a1a49..1ac4ff8e1 100644 --- a/Sources/DiscordKitCommon/Objects/User+Flags.swift +++ b/Sources/DiscordKitCommon/Objects/User+Flags.swift @@ -47,6 +47,8 @@ public extension User { /// Discord Certified Moderator public static let certifiedModerator = Flags(rawValue: 1 << 18) + + public static let activeDeveloper = Flags(rawValue: 1 << 22) /// Bot uses only [HTTP interactions](https://discord.com/developers/docs/interactions/receiving-and-responding#receiving-an-interaction) and is shown in the online member list public static let botHTTPInteractions = Flags(rawValue: 1 << 19) @@ -65,7 +67,8 @@ public extension User { .verifiedBot, .verifiedDeveloper, .certifiedModerator, - .botHTTPInteractions + .botHTTPInteractions, + .activeDeveloper ] // MARK: Hashable