diff options
| author | 2022-05-02 01:02:36 +0200 | |
|---|---|---|
| committer | 2022-05-01 23:02:36 +0000 | |
| commit | 5fe110b9a49144480ebca34dec65de91753994ec (patch) | |
| tree | 4c2333d85e37bcb682229cd44b0f13a758e70335 | |
| parent | Merge pull request #2145 from python-discord/mbaruh/modpings-cache (diff) | |
Added Messages Content to the `!intents` tag (#2159)
* Update intents.md
* Minor wording changes
Co-authored-by: wookie184 <[email protected]>
Diffstat (limited to '')
| -rw-r--r-- | bot/resources/tags/intents.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/intents.md b/bot/resources/tags/intents.md index 464caf0ba..aa49d59ae 100644 --- a/bot/resources/tags/intents.md +++ b/bot/resources/tags/intents.md @@ -1,6 +1,6 @@ **Using intents in discord.py** -Intents are a feature of Discord that tells the gateway exactly which events to send your bot. By default, discord.py has all intents enabled, except for the `Members` and `Presences` intents, which are needed for events such as `on_member` and to get members' statuses. +Intents are a feature of Discord that tells the gateway exactly which events to send your bot. By default discord.py has all intents enabled except for `Members`, `Message Content`, and `Presences`. These are needed for features such as `on_member` events, to get access to message content, and to get members' statuses. To enable one of these intents, you need to first go to the [Discord developer portal](https://discord.com/developers/applications), then to the bot page of your bot's application. Scroll down to the `Privileged Gateway Intents` section, then enable the intents that you need. |