dolfies / discord.py-self

A fork of the popular discord.py for user accounts.
https://discordpy-self.rtfd.io/en/latest/
MIT License
688 stars 160 forks source link

Ton of warnings in the console about member scraping. #588

Closed Asleep123 closed 11 months ago

Asleep123 commented 11 months ago

Summary

Getting a lot of warnings stating that member list scraping failed.

Reproduction Steps

I just setup a simple discord.py bot, with one command, which is user, to get the current user.

Code

import selfcord
from selfcord.ext import commands

client = commands.Bot(command_prefix="a!", self_bot=True)

@client.event
async def on_ready():
    print(f'Logged in as {client.user} (ID: {client.user.id})')

client.run("xxxxxxxxxxxxxxxxxxxxxxxxxx")

Expected Results

It runs as normal and executes the on_ready event.

Actual Results

It's popping up with a ton of errors stating

WARNING selfcord.state Member list scraping failed for xxxxxxxxxxxxxxxxxxxxxxxxx (Failed to automatically choose channels; please specify them manually).

System Information

Checklist

Additional Information

No response