Gauntlet 8 team updates

This commit is contained in:
Cal Corum 2025-05-30 21:15:41 -05:00
parent 17680a2348
commit 6adf6e34b1

View File

@ -257,15 +257,15 @@ async def get_opponent(session: Session, this_team, this_event, this_run) -> Tea
elif gp == 6: elif gp == 6:
teams = [1, 3, 8] teams = [1, 3, 8]
elif gp == 7: elif gp == 7:
teams = [4, 10, 21, 23, 30] teams = [4, 21, 23, 30]
elif gp == 8: elif gp == 8:
teams = [4, 10, 21, 23, 30]
elif gp == 9:
teams = [2, 20] teams = [2, 20]
elif gp == 10: elif gp == 9:
teams = [13, 14] teams = [13, 14]
else: elif gp == 10:
teams = [19, 5] teams = [19, 5]
else:
raise KeyError(f'Hmm...I do not know who you should be playing right now.')
t_id = teams[random.randint(0, len(teams)-1)] t_id = teams[random.randint(0, len(teams)-1)]
else: else:
return None return None