diff --git a/disnake/client.py b/disnake/client.py index 885a6979fe..156720b161 100644 --- a/disnake/client.py +++ b/disnake/client.py @@ -1918,8 +1918,8 @@ def fetch_guilds( .. note:: - Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, - :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`. + Using this, you will only receive :attr:`.Guild.id`, :attr:`.Guild.name`, + :attr:`.Guild.features`, :attr:`.Guild.icon`, and :attr:`.Guild.banner` per :class:`.Guild`. .. note:: diff --git a/disnake/types/message.py b/disnake/types/message.py index 26f691c6bb..29fdfda374 100644 --- a/disnake/types/message.py +++ b/disnake/types/message.py @@ -78,7 +78,7 @@ class RoleSubscriptionData(TypedDict): # fmt: off -MessageType = Literal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32] +MessageType = Literal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 36, 37, 38, 39] # fmt: on