From 101ef994351f76c8568669c3df5bd4ae09ebbcdf Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sat, 24 Feb 2024 20:11:17 -0600 Subject: [PATCH] Include Promos in '18 Gauntlet --- gauntlets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gauntlets.py b/gauntlets.py index 366c201..d984a29 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), ('cardset_id', 15), ('limit', 8)] + base_params = [('cardset_id', 8), ('cardset_id', 13), ('cardset_id', 14), ('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"]}')