diff options
Diffstat (limited to 'discord/message.hpp')
-rw-r--r-- | discord/message.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/message.hpp b/discord/message.hpp index ca60f08..ee6153e 100644 --- a/discord/message.hpp +++ b/discord/message.hpp @@ -40,7 +40,7 @@ enum class MessageFlags { SUPPRESS_EMBEDS = 1 << 2, // do not include any embeds when serializing this message SOURCE_MESSAGE_DELETE = 1 << 3, // the source message for this crosspost has been deleted (via Channel Following) URGENT = 1 << 4, // this message came from the urgent message system - HAS_THREAD = 1 << 5, // this message was used to start a thread (?) + HAS_THREAD = 1 << 5, // this message has an associated thread, with the same id as the message EPHEMERAL = 1 << 6, // this message is only visible to the user who invoked the Interaction LOADING = 1 << 7, // this message is an Interaction Response and the bot is "thinking" }; |