diff --git a/examples/autocomplete/autocomplete.exe b/examples/autocomplete/autocomplete.exe new file mode 100644 index 000000000..6508f8b23 Binary files /dev/null and b/examples/autocomplete/autocomplete.exe differ diff --git a/examples/modals/modals.exe b/examples/modals/modals.exe new file mode 100644 index 000000000..9d5482590 Binary files /dev/null and b/examples/modals/modals.exe differ diff --git a/examples/slash_commands/slash_commands.exe b/examples/slash_commands/slash_commands.exe new file mode 100644 index 000000000..b565bd178 Binary files /dev/null and b/examples/slash_commands/slash_commands.exe differ diff --git a/examples/threads/threads.exe b/examples/threads/threads.exe new file mode 100644 index 000000000..0267bb006 Binary files /dev/null and b/examples/threads/threads.exe differ diff --git a/message.go b/message.go index 00ea50a45..9916dad29 100644 --- a/message.go +++ b/message.go @@ -139,11 +139,11 @@ type Message struct { // This is a combination of bit masks; the presence of a certain permission can // be checked by performing a bitwise AND between this int and the flag. Flags MessageFlags `json:"flags"` - + // The thread that was started from this message, includes thread member object Thread *Channel `json:"thread,omitempty"` - - // An array of Sticker objects, if any were sent. + + // An array of Sticker objects, if any were sent. StickerItems []*Sticker `json:"sticker_items"` }