| @@ -18,10 +18,25 @@ namespace Discord | |||||
| /// </summary> | /// </summary> | ||||
| Partner = 0b10, | Partner = 0b10, | ||||
| HypeSquadEvents = 0b100, | HypeSquadEvents = 0b100, | ||||
| /// <summary> | |||||
| /// Flag given to users who have participated in the bug report program. | |||||
| /// </summary> | |||||
| BugHunter = 0b1000, | BugHunter = 0b1000, | ||||
| /// <summary> | |||||
| /// Flag given to users who are in the HypeSquad House of Bravery. | |||||
| /// </summary> | |||||
| HypeSquadBravery = 0b100_0000, | HypeSquadBravery = 0b100_0000, | ||||
| /// <summary> | |||||
| /// Flag given to users who are in the HypeSquad House of Brilliance. | |||||
| /// </summary> | |||||
| HypeSquadBrilliance = 0b1000_0000, | HypeSquadBrilliance = 0b1000_0000, | ||||
| /// <summary> | |||||
| /// Flag given to users who are in the HypeSquad House of Balance. | |||||
| /// </summary> | |||||
| HypeSquadBalance = 0b1_0000_0000, | HypeSquadBalance = 0b1_0000_0000, | ||||
| /// <summary> | |||||
| /// Flag given to users who subscribed to Nitro before games were added. | |||||
| /// </summary> | |||||
| EarlySupporter = 0b10_0000_0000, | EarlySupporter = 0b10_0000_0000, | ||||
| } | } | ||||
| } | } | ||||