1
0
mirror of https://github.com/Rapptz/discord.py.git synced 2025-05-15 02:09:49 +00:00

Add message content to the Intents.default docstring

This commit is contained in:
Vaskel 2022-02-19 00:15:23 -05:00 committed by GitHub
parent e14153ddcb
commit 19b10eecfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -509,7 +509,7 @@ class Intents(BaseFlags):
@classmethod
def default(cls: Type[Intents]) -> Intents:
"""A factory method that creates a :class:`Intents` with everything enabled
except :attr:`presences` and :attr:`members`.
except :attr:`presences`, :attr:`members`, and :attr:`message_content`.
"""
self = cls.all()
self.presences = False