[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.
This commit is contained in:
aikaterna 2019-03-07 14:09:22 -08:00 committed by Toby Harradine
parent 1c22b212c2
commit 421043d923

View File

@ -130,9 +130,7 @@ class Audio(commands.Cog):
async def _players_check(): async def _players_check():
try: try:
get_players = [ get_players = [p for p in lavalink.players if p.current is not None]
p for p in lavalink.players if p.current is not None and p.is_playing
]
get_single_title = get_players[0].current.title get_single_title = get_players[0].current.title
if get_single_title == "Unknown title": if get_single_title == "Unknown title":
get_single_title = get_players[0].current.uri get_single_title = get_players[0].current.uri