From 61cb4825327f5beb1a8cb2bb4d02d426a1907d70 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sun, 9 Apr 2017 20:02:33 -0700 Subject: [PATCH] Fix resuming from a pause lerping music timestamp --- disco/voice/player.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/disco/voice/player.py b/disco/voice/player.py index b442b56..9abe075 100644 --- a/disco/voice/player.py +++ b/disco/voice/player.py @@ -82,8 +82,8 @@ class Player(object): self.paused.wait() gevent.sleep(2) self.client.set_speaking(True) - self.start = time.time() - self.loops = 0 + start = time.time() + loops = 0 if self.client.state == VoiceState.DISCONNECTED: return