From cf173d42dcfd13ef293dd80be7b2f7d321c56f24 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Fri, 24 May 2024 22:02:12 -0500 Subject: [PATCH] Update gauntlets.py --- gauntlets.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gauntlets.py b/gauntlets.py index ac69f80..634a0a0 100644 --- a/gauntlets.py +++ b/gauntlets.py @@ -163,25 +163,25 @@ async def get_opponent(this_team, this_event, this_run): if gp == 0: t_id = 6 elif gp == 1: - t_id = 15 + t_id = 20 elif gp == 2: - t_id = 12 + t_id = 24 elif gp == 3: - t_id = 25 + t_id = 29 elif gp == 4: - t_id = 26 + t_id = 25 elif gp == 5: - t_id = 21 + t_id = 27 elif gp == 6: - t_id = 9 + t_id = 16 elif gp == 7: - t_id = 30 - elif gp == 8: - t_id = 8 - elif gp == 9: t_id = 7 + elif gp == 8: + t_id = 3 + elif gp == 9: + t_id = 11 elif gp == 10: - t_id = 19 + t_id = 14 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)