Change startup announcement title to 'Bot Restarted'

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 <noreply@anthropic.com>
This commit is contained in:
Michael Simard
2025-12-03 22:37:56 -06:00
parent 65fab3ee35
commit 6a6716c4cc

2
bot.py
View File

@@ -106,7 +106,7 @@ class StockBot(commands.Bot):
async def send_startup_announcement(self): async def send_startup_announcement(self):
"""Send startup announcement to configured announcement channel.""" """Send startup announcement to configured announcement channel."""
embed = discord.Embed( embed = discord.Embed(
title="🤖 Bot Update", title="🤖 Bot Restarted",
description=Config.STARTUP_ANNOUNCEMENT, description=Config.STARTUP_ANNOUNCEMENT,
color=discord.Color.blue(), color=discord.Color.blue(),
timestamp=datetime.now(pytz.timezone('America/New_York')) timestamp=datetime.now(pytz.timezone('America/New_York'))