Код: Выделить всё
@bot.command(pass_context = True, help="make bot leave vc")
async def leave(ctx):
if ctx.voice_client:
await ctx.guild.voice_client.disconnect()
await ctx.send('disconnected from vc')
else:
await ctx.send('im not currently in a vc')
Подробнее здесь: https://stackoverflow.com/questions/786 ... ot-working