From daa6cf6ff33c154256683a366fb2e865478d4ff1 Mon Sep 17 00:00:00 2001 From: Discord Bot Date: Fri, 13 Feb 2026 20:47:16 +0000 Subject: [PATCH] fix: add stadium image link to weather command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add clickable link field to weather embed as fallback for Discord caching issues. Users can click the link to view the stadium image in their browser if the embedded image fails to render. Changes: - Added "Stadium Image" field with direct link to team.stadium - Bump version to 2.29.7 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- VERSION | 2 +- commands/utilities/weather.py | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) 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