File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -551,11 +551,12 @@ def none(cls: Type[Intents]) -> Intents:
551
551
@classmethod
552
552
def default (cls : Type [Intents ]) -> Intents :
553
553
"""A factory method that creates a :class:`Intents` with everything enabled
554
- except :attr:`presences`, :attr:`members`, and :attr:`guild_messages`.
554
+ except :attr:`presences`, :attr:`members`, :attr:`messages`, and :attr:`guild_messages`.
555
555
"""
556
556
self = cls .all ()
557
557
self .presences = False
558
558
self .members = False
559
+ self .messages = False
559
560
self .guild_messages = False
560
561
return self
561
562
@@ -778,8 +779,9 @@ def messages(self):
778
779
779
780
.. note::
780
781
781
- Currently, this requires opting in explicitly via the developer portal as well .
782
+ Currently requires opting in explicitly via the developer portal to receive the actual content of the guild messages .
782
783
Bots in over 100 guilds will need to apply to Discord for verification.
784
+ See https://support-dev.discord.com/hc/en-us/articles/4404772028055-Message-Content-Access-Deprecation-for-Verified-Bots for more information.
783
785
"""
784
786
return (1 << 9 ) | (1 << 12 )
785
787
You can’t perform that action at this time.
0 commit comments