diff --git a/src/Discord.Net.Core/Entities/Messages/MessageFlags.cs b/src/Discord.Net.Core/Entities/Messages/MessageFlags.cs index 6f9450372..4854dc99e 100644 --- a/src/Discord.Net.Core/Entities/Messages/MessageFlags.cs +++ b/src/Discord.Net.Core/Entities/Messages/MessageFlags.cs @@ -43,6 +43,14 @@ namespace Discord /// /// Flag given to messages that is an Interaction Response and the bot is "thinking" /// - Loading = 1 << 7 + Loading = 1 << 7, + /// + /// Flag given to messages that failed to mention some roles and add their members to the thread. + /// + FailedToMentionRolesInThread = 1 << 8, + /// + /// Flag give to messages that will not trigger push and desktop notifications. + /// + SuppressNotification = 1 << 12 } }