plaaarrr
plaaarrr

Reputation: 53

How to enable a bot to speak in a stage channel

I have looked through all the documentation discord.py (Probably not very good) And I did not find how a bot can become a speaker itself in the stage channel. All I found was just a request to become a speaker - await request_to_speak()

Upvotes: 0

Views: 1815

Answers (1)

まぬお
まぬお

Reputation: 36

Use await member.edit(suppress = False) instead of await member.request_to_speak().

"suppress" parameter indicates the state of the speaker in the Stage Channel.

Here's documentation

Your welcome!

Upvotes: 2

Related Questions