Skip to content Skip to sidebar Skip to footer

Why Client.emojis, Newer Version Of Client.get_all_emojis() Returns Empy List When Using Discord's Python Api?

Based on this, this, this & this, I expected client.get_all_emojis() to work in my Discord chat bot: import discord from dotenv import load_dotenv import asyncio import os loa

Solution 1:

It may be because you're using the rewrite version of discord.py, from what I found here, you should use client.emojis


Post a Comment for "Why Client.emojis, Newer Version Of Client.get_all_emojis() Returns Empy List When Using Discord's Python Api?"