aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps
diff options
context:
space:
mode:
authorGravatar Kim Kam <[email protected]>2025-02-14 19:35:55 +0800
committerGravatar Johannes Christ <[email protected]>2025-02-14 18:56:39 +0100
commite9c1fb881ab0a9606e84fc1555c416336cfecc01 (patch)
tree2c25839f0bf10e1e21d5fa543d230ae6302b3129 /pydis_site/apps
parentBump pre-commit from 4.0.1 to 4.1.0 (diff)
docs: update required privileged intents in bot.md
Diffstat (limited to 'pydis_site/apps')
-rw-r--r--pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md
index a414bc20..9fc0f882 100644
--- a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md
+++ b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot.md
@@ -57,11 +57,11 @@ See [here](../creating-bot-account) for help with setting up a bot account. Once
#### Privileged Intents
It is necessary to explicitly request that your Discord bot receives certain gateway events.
-The Python bot requires the `Server Member Intent` to function.
+The Python bot requires `Server Member Intent` and `Message Content Intent` to function.
In order to enable it, visit the [Developer Portal](https://discord.com/developers/applications/) (from where you copied your bot's login token) and scroll down to the `Privileged Gateway Intents` section.
The `Presence Intent` is not necessary and can be left disabled.
-If your bot fails to start with a `PrivilegedIntentsRequired` exception, this indicates that the required intent was not enabled.
+If your bot fails to start with a `PrivilegedIntentsRequired` exception, this indicates that the required intents were not enabled.
---