1
0
Fork 0
mirror of synced 2024-05-19 20:12:30 +12:00

Don't check if current is set

This commit is contained in:
phxntxm 2017-06-07 19:40:50 -05:00
parent a65ffeb221
commit 25c6a89e20

View file

@ -615,7 +615,7 @@ class Music:
"""
state = self.voice_states.get(ctx.message.guild.id)
if state is None or not state.playing or state.current is None:
if state is None or not state.playing:
await ctx.send('Not playing any music right now...')
return