From 6a6716c4cc7ef7b8b9ef65be72201fb87b174a6b Mon Sep 17 00:00:00 2001 From: Michael Simard Date: Wed, 3 Dec 2025 22:37:56 -0600 Subject: [PATCH] Change startup announcement title to 'Bot Restarted' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update embed title from "Bot Update" to "Bot Restarted" for clearer messaging. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 51847a1..1f22871 100644 --- a/bot.py +++ b/bot.py @@ -106,7 +106,7 @@ class StockBot(commands.Bot): async def send_startup_announcement(self): """Send startup announcement to configured announcement channel.""" embed = discord.Embed( - title="🤖 Bot Update", + title="🤖 Bot Restarted", description=Config.STARTUP_ANNOUNCEMENT, color=discord.Color.blue(), timestamp=datetime.now(pytz.timezone('America/New_York'))