feat(Badges): add certified moderator badge

This commit is contained in:
cnrad
2022-09-03 22:40:10 -04:00
parent abf90295dc
commit cfb9d12372
3 changed files with 3 additions and 0 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -11,6 +11,7 @@ export const getFlags = (flag: number): string[] => {
if (flag & 512) flags.push("Early_Supporter");
if (flag & 16384) flags.push("Bug_Hunter_Level_2");
if (flag & 131072) flags.push("Early_Verified_Bot_Developer");
if (flag & 262144) flags.push("Discord_Certified_Moderator");
return flags;
};