From df8db00c08bddf7895e69d1e82c28e5c3262f1ad Mon Sep 17 00:00:00 2001 From: phxntxm Date: Wed, 24 Aug 2016 14:55:09 -0500 Subject: [PATCH] Removed exception handling if voice was still none, it just caused a loop. I don't know how this error keeps happening --- cogs/playlist.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cogs/playlist.py b/cogs/playlist.py index 940bf66..5e56ef7 100644 --- a/cogs/playlist.py +++ b/cogs/playlist.py @@ -232,9 +232,6 @@ class Music: "Sorry, I couldn't connect! This can sometimes be caused by the server region you are in. " "You can either try again, or try to change the server's region and see if that fixes the issue") return - except discord.ClientException: - await self.bot.voice_client_in(ctx.message.server).disconnect() - await ctx.invoke(self.summon) # Return true so that we can invoke this, and ensure we succeeded return True