Skip to content

Commit 7729699

Browse files
authored
Message content intent disabled by default
1 parent 4cb7919 commit 7729699

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@
6262
intents = disnake.Intents.default()
6363

6464
"""
65-
Remove this if you don't want to use prefix (normal) commands.
65+
Uncomment this if you don't want to use prefix (normal) commands.
6666
It is recommended to use slash commands and therefore not use prefix commands.
6767
68-
If you want to use prefix commands, enable the intent below in the Discord developer portal.
68+
If you want to use prefix commands, make sure to also enable the intent below in the Discord developer portal.
6969
"""
70-
intents.message_content = True
70+
# intents.message_content = True
7171

7272
bot = Bot(command_prefix=commands.when_mentioned_or(config["prefix"]), intents=intents, help_command=None)
7373

0 commit comments

Comments
 (0)