From 50ec8d2973798cc90afe2862f2a01334cade4b21 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Fri, 14 Jul 2023 13:38:55 -0500 Subject: [PATCH] Bugfix for "bad lineup" bug --- gauntlets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gauntlets.py b/gauntlets.py index d4c69cd..cecb5a2 100644 --- a/gauntlets.py +++ b/gauntlets.py @@ -187,7 +187,7 @@ async def run_draft(interaction: discord.Interaction, main_team, this_event, dra if this_event['id'] == 1: embed_title = f'{main_team["lname"]} - {this_event["name"]} Draft' embed_description = f'{this_event["name"]}' - base_params = ai_manager.MAJOR_CARDSET_PARAMS + base_params = copy.deepcopy(ai_manager.MAJOR_CARDSET_PARAMS) base_params.extend([('limit', 8), ('cardset_id', 8)]) elif this_event['id'] == 2: embed_title = f'{main_team["lname"]} - {this_event["name"]} Draft'