toxicrecker / DiscordUtils

MIT License
72 stars 48 forks source link

Music : Bot is not connected to voice #34

Open Abbhiishek opened 2 years ago

Abbhiishek commented 2 years ago

Sometime its shows that bot is not connected to voice even after joining the voice channel.

SalageanMircea commented 2 years ago

@client.command() async def stop(ctx): player = music.get_player(guild_id=ctx.guild.id) await player.stop() await ctx.send("Stopped")

@client.command() async def leave(ctx): player = music.get_player(guild_id=ctx.guild.id) await player.stop() await ctx.voice_client.disconnect() await ctx.send("Stopped")

Use this

Abbhiishek commented 2 years ago

Thanks that worked fine !