Skip to content

How to turn of member scraping? #511

Answered by Impulsery
ErikKalkoken asked this question in Help
Discussion options

You must be logged in to vote

You can pass "chunk_guilds_at_startup=False" as an argument during the initialization of the Client instance to solve this.

Example:

class MyClient(discord.Client):
    async def on_ready(self):
        print(f'We have logged in as {self.user}')

client = MyClient(chunk_guilds_at_startup=False)

client.run("YOUR-TOKEN")

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by ErikKalkoken
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
3 participants