Closed SeraphimRP closed 1 year ago
Text-in-stage will be supported in the next version, it was implemented in #942. You can either use the current master branch (changelog) or PartialMessageable
s for now, if that works for you.
Thank you much! Apologies for the duplicate, my search-fu wasn't up to par. :)
Summary
StageChannels seem to be just VoiceChannels with extra steps. Both have the ability for users to send chat messages there, but bots can't seem to send messages in there.
Reproduction Steps
We use
disnake.abc.Messageable
to identify sources we can respond to.StageChannel
isn't one, and so we aren't able to run_get_channel()
on it. We can't usesend()
directly on the StageChannel we get either.Minimal Reproducible Code
No response
Expected Results
The ability to send messages in text channels in response to command interactions and other invocations of the bot.
Actual Results
If we continue our usual
Messageable
route, an error is thrown because StageChannel doesn't inherit that class. If we try handling those channels uniquely, there is nosend()
capacity despite that option seeming to exist?Traceback with
Messageable
:Traceback with
send()
:Intents
Default + message_content
System Information
Checklist
Additional Context
No response