From 93075519a3017fe64a21fb2f9d5562e5a6bbe00f Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 27 Jun 2024 00:32:04 -0500 Subject: [PATCH] Update gauntlets.py --- gauntlets.py | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/gauntlets.py b/gauntlets.py index 634a0a0..4c2d770 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 = 6 + t_id = 9 elif gp == 1: - t_id = 20 - elif gp == 2: - t_id = 24 - elif gp == 3: - t_id = 29 - elif gp == 4: - t_id = 25 - elif gp == 5: - t_id = 27 - elif gp == 6: - t_id = 16 - elif gp == 7: - t_id = 7 - elif gp == 8: t_id = 3 - elif gp == 9: - t_id = 11 - elif gp == 10: + elif gp == 2: + t_id = 30 + elif gp == 3: + t_id = 2 + elif gp == 4: + t_id = 1 + elif gp == 5: + t_id = 24 + elif gp == 6: t_id = 14 + elif gp == 7: + t_id = 20 + elif gp == 8: + t_id = 12 + elif gp == 9: + t_id = 25 + elif gp == 10: + t_id = 13 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)