From 187c6d3ba7ee58b6578a14c99afb1e80ec6dff51 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Sun, 9 Jul 2017 15:04:48 -0500 Subject: [PATCH] Force disconnect on stop --- cogs/music.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/music.py b/cogs/music.py index 620d9f5..6005e24 100644 --- a/cogs/music.py +++ b/cogs/music.py @@ -633,7 +633,7 @@ class Music: # Then stop playing, and disconnect if voice: voice.stop() - await voice.disconnect() + await voice.disconnect(force=True) @commands.command() @commands.guild_only()