From d7a766029e654efee9d5dbb22f200d1112a3414c Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sun, 10 Nov 2024 19:52:07 -0600 Subject: [PATCH] Week 2 Gauntlet --- gauntlets.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/gauntlets.py b/gauntlets.py index 8c6d5fe..ab28b9e 100644 --- a/gauntlets.py +++ b/gauntlets.py @@ -188,27 +188,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'] == 6: if gp == 0: - t_id = 30 + t_id = 18 elif gp == 1: - t_id = 22 - elif gp == 2: - t_id = 7 - elif gp == 3: - t_id = 8 - elif gp == 4: - t_id = 16 - elif gp == 5: t_id = 6 + elif gp == 2: + t_id = 17 + elif gp == 3: + t_id = 21 + elif gp == 4: + t_id = 4 + elif gp == 5: + t_id = 23 elif gp == 6: - t_id = 24 + t_id = 5 elif gp == 7: - t_id = 15 + t_id = 3 elif gp == 8: - t_id = 13 + t_id = 19 elif gp == 9: - t_id = 1 + t_id = 27 elif gp == 10: - t_id = 29 + t_id = 25 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)