From e8aee79af8883d660701f30e9d9d9f270444c016 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 21 Dec 2023 00:10:00 -0600 Subject: [PATCH] Update gauntlets.py Add custom ballplayers to gauntlet draft --- gauntlets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gauntlets.py b/gauntlets.py index 9b9be14..366c201 100644 --- a/gauntlets.py +++ b/gauntlets.py @@ -239,7 +239,7 @@ async def run_draft(interaction: discord.Interaction, main_team, this_event, dra elif this_event['id'] == 3: embed_title = f'{main_team["lname"]} - {this_event["name"]} Draft' embed_description = f'{this_event["name"]}' - base_params = [('cardset_id', 8), ('cardset_id', 13), ('limit', 8)] + base_params = [('cardset_id', 8), ('cardset_id', 13), ('cardset_id', 15), ('limit', 8)] else: logging.error(f'run_draft - Event ID {this_event["id"]} not recognized') raise KeyError(f'Draft data not found for Gauntlet {this_event["id"]}')