fixed threshold for missed games

This commit is contained in:
Sakimori 2021-01-15 06:08:52 -05:00
parent 26ddaf7e5a
commit 80aaa086fb

View File

@ -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)