fixed threshold for missed games
This commit is contained in:
parent
26ddaf7e5a
commit
80aaa086fb
|
@ -1657,7 +1657,7 @@ async def start_league_day(channel, league, partial = False):
|
||||||
last = False
|
last = False
|
||||||
|
|
||||||
if partial:
|
if partial:
|
||||||
missed_games = (league.day % league.series_length) - 2
|
missed_games = (league.day % league.series_length) - 1
|
||||||
await league_day_watcher(channel, league, current_games, config()['simmadome_url']+ext, last, missed = missed_games)
|
await league_day_watcher(channel, league, current_games, config()['simmadome_url']+ext, last, missed = missed_games)
|
||||||
else:
|
else:
|
||||||
await league_day_watcher(channel, league, current_games, config()['simmadome_url']+ext, last)
|
await league_day_watcher(channel, league, current_games, config()['simmadome_url']+ext, last)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user