Answering DM Calls #439
Unanswered
MachineKillin
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been trying to get my bot to answer direct message calls and i've made it able to detect calls:
@bot.event async def on_message(message): if message.type == discord.MessageType.call: call = message.call await call.connect()
this doesnt work and im not sure why, it can tell if its getting a call but it cannot actually join the call. Does anyone understand how I can fix this?
Beta Was this translation helpful? Give feedback.
All reactions