Browse Source

Fix resuming from a pause lerping music timestamp

feature/voice
Andrei 8 years ago
parent
commit
61cb482532
  1. 4
      disco/voice/player.py

4
disco/voice/player.py

@ -82,8 +82,8 @@ class Player(object):
self.paused.wait() self.paused.wait()
gevent.sleep(2) gevent.sleep(2)
self.client.set_speaking(True) self.client.set_speaking(True)
self.start = time.time() start = time.time()
self.loops = 0 loops = 0
if self.client.state == VoiceState.DISCONNECTED: if self.client.state == VoiceState.DISCONNECTED:
return return

Loading…
Cancel
Save