diff --git a/src/Discord.Net.Core/Entities/Messages/MessageType.cs b/src/Discord.Net.Core/Entities/Messages/MessageType.cs
index c384e29ea..de30d8047 100644
--- a/src/Discord.Net.Core/Entities/Messages/MessageType.cs
+++ b/src/Discord.Net.Core/Entities/Messages/MessageType.cs
@@ -58,8 +58,31 @@ namespace Discord
///
ChannelFollowAdd = 12,
///
+ /// The message for when a guild is disqualified from discovery.
+ ///
+ GuildDiscoveryDisqualified = 14,
+ ///
+ /// The message for when a guild is requalified for discovery.
+ ///
+ GuildDiscoveryRequalified = 15,
+ ///
+ /// The message for when the initial warning is sent for the initial grace period discovery.
+ ///
+ GuildDiscoveryGracePeriodInitialWarning = 16,
+ ///
+ /// The message for when the final warning is sent for the initial grace period discovery.
+ ///
+ GuildDiscoveryGracePeriodFinalWarning = 17,
+ ///
+ /// The message for when a thread is created.
+ ///
+ ThreadCreated = 18,
+ ///
/// The message is an inline reply.
///
+ ///
+ /// Only available in API v8
+ ///
Reply = 19,
///
/// The message is an Application Command
@@ -67,6 +90,17 @@ namespace Discord
///
/// Only available in API v8
///
- ApplicationCommand = 20
+ ApplicationCommand = 20,
+ ///
+ /// The message that starts a thread.
+ ///
+ ///
+ /// Only available in API v9
+ ///
+ ThreadStarterMessage = 21,
+ ///
+ /// The message for a invite reminder
+ ///
+ GuildInviteReminder = 22
}
}