toxicrecker / DiscordUtils

MIT License
71 stars 48 forks source link

Music : Bot is not connected to voice #34

Open Abbhiishek opened 3 years ago

Abbhiishek commented 3 years ago

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

Salagean-Mircea-Codrin-Ioan commented 3 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 3 years ago

Thanks that worked fine !