From b2b790b3c933dea8807423b7b943ce2881eef2d5 Mon Sep 17 00:00:00 2001 From: Sakimori Date: Fri, 15 Jan 2021 06:21:25 -0500 Subject: [PATCH] fixed tourney days --- the_prestige.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/the_prestige.py b/the_prestige.py index 3229aa4..b47dcbd 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -1232,8 +1232,8 @@ async def continue_tournament_series(tourney, queue, games_list, wins_in_series) if tourney.league is not None: if tourney.day is None: tourney.day = tourney.league.day - away_team.set_pitcher(rotation_slot = tourney.league.day) - home_team.set_pitcher(rotation_slot = tourney.league.day) + away_team.set_pitcher(rotation_slot = tourney.day) + home_team.set_pitcher(rotation_slot = tourney.day) this_game = games.game(away_team.finalize(), home_team.finalize(), length = tourney.game_length)