Skip to content

Tag: pycord

Discord Bot Keeps Thinking After Responding Already

I’m using py-cord and my Discord bot is thinking even after it has already sent a response. I’m deferring since the .response function takes so long that the bot will exit out from the command if I don’t. Is there any fix to it? Answer ctx.respond will respond to it: it will be viewable by a…

Add reactions to embeds py-cord

Im making a discord bot and i decided to change from prefixed commands to slash command using pycord and my poll command it won’t add the reaction it will just send the embed without the reactions Here is my code: Before i decided to change to slash commands it worked perfectly fine I don’t know w…

discord.py – BanIterator object is not iterable

I’m trying to make an unban command but I have no way of getting the banned users list. This is the code: Error code: I tried even copying the code from this man (https://youtu.be/KS1_3km5vC0) but it doesn’t work. This is the code: Error code: This is all the bot code: Answer as in Documentation ,…