We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b948e3e commit 4b83586Copy full SHA for 4b83586
bot.py
@@ -105,7 +105,10 @@ def email_check(email):
105
else:
106
return False
107
108
-client = commands.Bot(command_prefix = '.')
+intents = discord.Intents.default()
109
+intents.members = True
110
+
111
+client = commands.Bot(command_prefix = '.', intents=intents)
112
113
@client.event
114
async def on_ready():
requirements.txt
@@ -4,7 +4,7 @@ async-timeout==3.0.1
4
attrs==19.3.0
5
chardet==3.0.4
6
click==7.1.2
7
-discord.py==1.4.1
+discord.py==1.5.1
8
Flask==1.1.2
9
idna==2.10
10
itsdangerous==1.1.0
0 commit comments