From aebaa9b282ae47d906c99a84e401797ce7baf467 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 19 May 2017 13:55:45 -0500 Subject: [PATCH] Add another edge case check --- cogs/music.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/music.py b/cogs/music.py index 62b4cbd..1a5a861 100644 --- a/cogs/music.py +++ b/cogs/music.py @@ -551,7 +551,7 @@ class Music: """Shows info about the currently played song.""" state = self.voice_states.get(ctx.message.guild.id) - if state is None or not state.playing: + if state is None or not state.playing or not state.current: await ctx.send('Not playing anything.') else: # Create the embed object we'll use