diff --git a/src/Discord.Net.Core/Entities/Users/UserFlag.cs b/src/Discord.Net.Core/Entities/Users/UserFlag.cs
index 4f4c57a60..15d4b1122 100644
--- a/src/Discord.Net.Core/Entities/Users/UserFlag.cs
+++ b/src/Discord.Net.Core/Entities/Users/UserFlag.cs
@@ -18,10 +18,25 @@ namespace Discord
///
Partner = 0b10,
HypeSquadEvents = 0b100,
+ ///
+ /// Flag given to users who have participated in the bug report program.
+ ///
BugHunter = 0b1000,
+ ///
+ /// Flag given to users who are in the HypeSquad House of Bravery.
+ ///
HypeSquadBravery = 0b100_0000,
+ ///
+ /// Flag given to users who are in the HypeSquad House of Brilliance.
+ ///
HypeSquadBrilliance = 0b1000_0000,
+ ///
+ /// Flag given to users who are in the HypeSquad House of Balance.
+ ///
HypeSquadBalance = 0b1_0000_0000,
+ ///
+ /// Flag given to users who subscribed to Nitro before games were added.
+ ///
EarlySupporter = 0b10_0000_0000,
}
}