diff --git a/cogs/events.py b/cogs/events.py index 2d541cc..2795b27 100644 --- a/cogs/events.py +++ b/cogs/events.py @@ -28,10 +28,13 @@ RTL = "\N{leftwards black arrow}\U0000fe0f" async def _dc(client: discord.VoiceProtocol): + if client.is_playing(): + client.stop() try: - await client.disconnect() + await client.disconnect(force=True) finally: - client.cleanup() + # client.cleanup() + pass class Events(commands.Cog):