From 76e990390b1f55f0c4a4161db3333cf97f60a903 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Wed, 3 Jul 2024 09:55:30 -0500 Subject: [PATCH] Live Series Gauntlet update --- gauntlets.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gauntlets.py b/gauntlets.py index 4c2d770..7e39178 100644 --- a/gauntlets.py +++ b/gauntlets.py @@ -161,27 +161,27 @@ async def get_opponent(this_team, this_event, this_run): return await db_get('teams', object_id=t_id, none_okay=False) elif this_event['id'] == 5: if gp == 0: - t_id = 9 + t_id = 15 elif gp == 1: - t_id = 3 + t_id = 10 elif gp == 2: - t_id = 30 + t_id = 28 elif gp == 3: - t_id = 2 + t_id = 30 elif gp == 4: - t_id = 1 + t_id = 7 elif gp == 5: - t_id = 24 + t_id = 22 elif gp == 6: - t_id = 14 + t_id = 23 elif gp == 7: - t_id = 20 + t_id = 2 elif gp == 8: - t_id = 12 + t_id = 14 elif gp == 9: - t_id = 25 + t_id = 4 elif gp == 10: - t_id = 13 + t_id = 19 else: raise KeyError(f'Hmm...I do not know who you should be playing right now.') return await db_get('teams', object_id=t_id, none_okay=False)