diff --git a/VERSION b/VERSION index 56c92d5..6bffa43 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.29.5 +2.29.7 diff --git a/commands/utilities/weather.py b/commands/utilities/weather.py index 17e1c6e..ba3bbbe 100644 --- a/commands/utilities/weather.py +++ b/commands/utilities/weather.py @@ -261,6 +261,12 @@ class WeatherCommands(commands.Cog): # Set stadium image at bottom if team.stadium: embed.set_image(url=team.stadium) + # Add direct link as fallback for Discord caching issues + embed.add_field( + name="Stadium Image", + value=f"[Click here to view stadium image]({team.stadium})", + inline=False + ) return embed