Update gauntlets.py

Add logo to embed
This commit is contained in:
Cal Corum 2023-03-30 11:30:18 -05:00
parent a506f223d8
commit 38bd00ca68

View File

@ -433,6 +433,8 @@ async def run_draft(interaction: discord.Interaction, main_team, this_event, dra
final_embed = get_embeds(False)[0] final_embed = get_embeds(False)[0]
final_embed.title = f'{main_team["lname"]} - {this_event["name"]} Draft' final_embed.title = f'{main_team["lname"]} - {this_event["name"]} Draft'
if main_team['logo']:
final_embed.set_thumbnail(main_team["logo"])
return final_embed return final_embed