discord py Client.guilds возвращает пустой список

Почему вообще такое может быть. Бот на 3 моих серверах

bot = commands.Bot(command_prefix = settings['prefix'])
Client = discord.Client()
@bot.command()
async def сервера(ctx):
    servers = Client.guilds
    print(servers)

Ответы (1 шт):

Автор решения: RAINGM
bot = commands.Bot(command_prefix = settings['prefix'])
@bot.command()
async def сервера(ctx):
    servers = bot.guilds
    print(servers)
→ Ссылка