diff --git a/deno/payloads/v10/user.ts b/deno/payloads/v10/user.ts index 647cce72..2225edb7 100644 --- a/deno/payloads/v10/user.ts +++ b/deno/payloads/v10/user.ts @@ -147,6 +147,12 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User's account has been quarantined based on recent activity + * + * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. + */ + Quarantined = Math.pow(2, 44), } /** diff --git a/deno/payloads/v8/user.ts b/deno/payloads/v8/user.ts index ba994f03..f8f603db 100644 --- a/deno/payloads/v8/user.ts +++ b/deno/payloads/v8/user.ts @@ -149,6 +149,12 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User's account has been quarantined based on recent activity + * + * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. + */ + Quarantined = Math.pow(2, 44), } /** diff --git a/deno/payloads/v9/user.ts b/deno/payloads/v9/user.ts index 647cce72..2225edb7 100644 --- a/deno/payloads/v9/user.ts +++ b/deno/payloads/v9/user.ts @@ -147,6 +147,12 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User's account has been quarantined based on recent activity + * + * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. + */ + Quarantined = Math.pow(2, 44), } /** diff --git a/payloads/v10/user.ts b/payloads/v10/user.ts index b15bd545..84cb0d6c 100644 --- a/payloads/v10/user.ts +++ b/payloads/v10/user.ts @@ -147,6 +147,12 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User's account has been quarantined based on recent activity + * + * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. + */ + Quarantined = Math.pow(2, 44), } /** diff --git a/payloads/v8/user.ts b/payloads/v8/user.ts index 06205d71..ba03bc3a 100644 --- a/payloads/v8/user.ts +++ b/payloads/v8/user.ts @@ -149,6 +149,12 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User's account has been quarantined based on recent activity + * + * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. + */ + Quarantined = Math.pow(2, 44), } /** diff --git a/payloads/v9/user.ts b/payloads/v9/user.ts index b15bd545..84cb0d6c 100644 --- a/payloads/v9/user.ts +++ b/payloads/v9/user.ts @@ -147,6 +147,12 @@ export enum UserFlags { * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. */ Spammer = 1 << 20, + /** + * User's account has been quarantined based on recent activity + * + * @unstable This user flag is currently not documented by Discord but has a known value which we will try to keep up to date. + */ + Quarantined = Math.pow(2, 44), } /**