Update gauntlets.py

Update gauntlet teams
This commit is contained in:
Cal Corum 2023-11-27 10:31:57 -06:00
parent 5e89c898e6
commit c608453b07

View File

@ -111,27 +111,27 @@ async def get_opponent(this_team, this_event, this_run):
return await db_get('teams', object_id=t_id, none_okay=False) return await db_get('teams', object_id=t_id, none_okay=False)
elif this_event['id'] == 3: elif this_event['id'] == 3:
if gp == 0: if gp == 0:
t_id = 26 t_id = 28
elif gp == 1: elif gp == 1:
t_id = 6
elif gp == 2:
t_id = 12
elif gp == 3:
t_id = 18
elif gp == 4:
t_id = 7 t_id = 7
elif gp == 5: elif gp == 2:
t_id = 20 t_id = 15
elif gp == 6: elif gp == 3:
t_id = 22 t_id = 6
elif gp == 7: elif gp == 4:
t_id = 3
elif gp == 8:
t_id = 21 t_id = 21
elif gp == 5:
t_id = 23
elif gp == 6:
t_id = 24
elif gp == 7:
t_id = 13
elif gp == 8:
t_id = 4
elif gp == 9: elif gp == 9:
t_id = 1 t_id = 2
elif gp == 10: elif gp == 10:
t_id = 27 t_id = 19
else: else:
raise KeyError(f'Huh...I have no idea who you should be playing right now.') raise KeyError(f'Huh...I have no idea who you should be playing right now.')
return await db_get('teams', object_id=t_id, none_okay=False) return await db_get('teams', object_id=t_id, none_okay=False)