Update gauntlets.py

Add custom ballplayers to gauntlet draft
This commit is contained in:
Cal Corum 2023-12-21 00:10:00 -06:00
parent 4a5a305077
commit e8aee79af8

View File

@ -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"]}')