From c4f7664bd99ac888f15e42c4899baa9b86539844 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 16 Oct 2015 20:11:29 -0400 Subject: [PATCH] Only remove if the user is actually in the voice channel. --- discord/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/server.py b/discord/server.py index 62668bca4..a50f0898e 100644 --- a/discord/server.py +++ b/discord/server.py @@ -95,7 +95,7 @@ class Member(User): if old_channel is None and self.voice_channel is not None: # we joined a channel self.voice_channel.voice_members.append(self) - elif old_channel is not None and self.voice_channel is None: + elif old_channel is not None and self.voice_channel is None and self in old_channel: # we left a channel old_channel.voice_members.remove(self)