Skip to content

Commit

Permalink
feat(MessageFlags): add FailedToMentionSomeRolesInThread (#280)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
advaith1 and github-actions[bot] committed Jan 25, 2022
1 parent 80ed7ba commit 76588d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/payloads/v9/channel.ts
Expand Up @@ -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,
}

/**
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/channel.ts
Expand Up @@ -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,
}

/**
Expand Down

0 comments on commit 76588d9

Please sign in to comment.