From b678effb76ebb1b2fe5564b3ac11d4774f088569 Mon Sep 17 00:00:00 2001 From: Adwaith <73161765+adwaithkrishna@users.noreply.github.com> Date: Thu, 28 Apr 2022 07:43:05 +0530 Subject: [PATCH] Add intents parameter to basic example --- docs/intro.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/intro.rst b/docs/intro.rst index 418c33358..e89c9af20 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -99,6 +99,8 @@ A quick example to showcase how events work: .. code-block:: python3 + # This example requires the 'message_content' intent. + import discord class MyClient(discord.Client): @@ -108,6 +110,9 @@ A quick example to showcase how events work: async def on_message(self, message): print(f'Message from {message.author}: {message.content}') - client = MyClient() + intents = discord.Intents.default() + intents.message_content = True + + client = MyClient(intents=intents) client.run('my token goes here')