From 9b9a25f35a81c43b1b984450f395f10256effdfe Mon Sep 17 00:00:00 2001 From: Sakimori Date: Wed, 10 Feb 2021 00:00:34 -0500 Subject: [PATCH] fixed bug where pauseleague didn't work between series --- the_prestige.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_prestige.py b/the_prestige.py index 1003b1a..9b617e1 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -2010,7 +2010,7 @@ async def league_day_watcher(channel, league, games_list, filter_url, last = Fal else: league.active = False - if league.autoplay == 0 or config()["game_freeze"]: #if number of series to autoplay has been reached + if league.autoplay <= 0 or config()["game_freeze"]: #if number of series to autoplay has been reached if league in active_standings.keys(): await active_standings[league].unpin() active_standings[league] = await channel.send(embed=league.standings_embed())