From 421043d923dae8451a4c4b3f4c8d14a2b40d24ae Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Thu, 7 Mar 2019 14:09:22 -0800 Subject: [PATCH] [Audio] Fix for audioset status (#2481) Revert player.is_playing check added to the playing players list for audioset status in #2473. This addition would cause no status to be shown when a local track was played and skip was used. --- redbot/cogs/audio/audio.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/redbot/cogs/audio/audio.py b/redbot/cogs/audio/audio.py index 25752482d..81fe5d854 100644 --- a/redbot/cogs/audio/audio.py +++ b/redbot/cogs/audio/audio.py @@ -130,9 +130,7 @@ class Audio(commands.Cog): async def _players_check(): try: - get_players = [ - p for p in lavalink.players if p.current is not None and p.is_playing - ] + get_players = [p for p in lavalink.players if p.current is not None] get_single_title = get_players[0].current.title if get_single_title == "Unknown title": get_single_title = get_players[0].current.uri