diff --git a/deno/payloads/v9/channel.ts b/deno/payloads/v9/channel.ts index 31625e446..92d1c1df5 100644 --- a/deno/payloads/v9/channel.ts +++ b/deno/payloads/v9/channel.ts @@ -610,6 +610,10 @@ export enum MessageFlags { * This message is an Interaction Response and the bot is "thinking" */ Loading = 1 << 7, + /** + * This message failed to mention some roles and add their members to the thread + */ + FailedToMentionSomeRolesInThread = 1 << 8, } /** diff --git a/payloads/v9/channel.ts b/payloads/v9/channel.ts index 6187ae78d..5e26bfc89 100644 --- a/payloads/v9/channel.ts +++ b/payloads/v9/channel.ts @@ -610,6 +610,10 @@ export const enum MessageFlags { * This message is an Interaction Response and the bot is "thinking" */ Loading = 1 << 7, + /** + * This message failed to mention some roles and add their members to the thread + */ + FailedToMentionSomeRolesInThread = 1 << 8, } /**