From be72077af8dba81adb721df6a957e0257da725f3 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 12 Dec 2024 10:47:47 -0600 Subject: [PATCH] Fixed pitcher batting command --- cogs/players.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/players.py b/cogs/players.py index bf2e769..25eed28 100644 --- a/cogs/players.py +++ b/cogs/players.py @@ -2176,7 +2176,7 @@ class Players(commands.Cog): team = await get_team_by_owner(SBA_SEASON, ctx.author.id) embed = get_team_embed(f'Pitcher Batting Card #{card_num}', team=team, thumbnail=False) - embed.set_image(url=f'{SBA_BASE_URL}/static/images/pitbat/card-{card_num}.png') + embed.set_image(url=f'{SBA_BASE_URL}/images/pitbat/card-{card_num}.png') await ctx.send(content=None, embed=embed) # @app_commands.command(name='keepers', description='Mod: Set team keepers')