diff --git a/deno/payloads/v8/user.ts b/deno/payloads/v8/user.ts index 5b7536ad..e26981cd 100644 --- a/deno/payloads/v8/user.ts +++ b/deno/payloads/v8/user.ts @@ -145,6 +145,10 @@ export enum UserFlags { * 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 */ BotHTTPInteractions = 1 << 19, + /** + * User has been identified as spammer + */ + Spammer = 1 << 20, } /** diff --git a/deno/payloads/v9/user.ts b/deno/payloads/v9/user.ts index 5b7536ad..e26981cd 100644 --- a/deno/payloads/v9/user.ts +++ b/deno/payloads/v9/user.ts @@ -145,6 +145,10 @@ export enum UserFlags { * 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 */ BotHTTPInteractions = 1 << 19, + /** + * User has been identified as spammer + */ + Spammer = 1 << 20, } /** diff --git a/payloads/v8/user.ts b/payloads/v8/user.ts index 48461ac2..878fdff4 100644 --- a/payloads/v8/user.ts +++ b/payloads/v8/user.ts @@ -145,6 +145,10 @@ export const enum UserFlags { * 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 */ BotHTTPInteractions = 1 << 19, + /** + * User has been identified as spammer + */ + Spammer = 1 << 20, } /** diff --git a/payloads/v9/user.ts b/payloads/v9/user.ts index 48461ac2..878fdff4 100644 --- a/payloads/v9/user.ts +++ b/payloads/v9/user.ts @@ -145,6 +145,10 @@ export const enum UserFlags { * 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 */ BotHTTPInteractions = 1 << 19, + /** + * User has been identified as spammer + */ + Spammer = 1 << 20, } /**