Pycord bot stops?

Hello,

I coded a Discord Pycord bot with slash commands.

I have the problem that when I execute a command and the function in the command lasts for several seconds (e.g. 50 seconds), I cannot use the other commands until the function is finished.

Is there any way to get around it?

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
3 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
JohnnyDript
1 year ago

Your functions should be asynchronously programmed, otherwise you will always wait until the current is finished.

JohnnyDript
1 year ago
Reply to  anonym71619

You can async use. More in the Docs. Note that you may need to change some things within the functions.