refactor(general): new author image

Replaced the embed author icon URLs from 'y5SEZ9.webp' to 'gSxqzV.png' across botinfo, feedback, ping, serverinfo, and uptime cogs for consistency and to use the new image.
This commit is contained in:
neoarz
2025-10-03 11:27:19 -04:00
parent 4e258dd174
commit f4c3b4aae7
5 changed files with 7 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ class UptimeView(discord.ui.View):
description=f"The bot has been running for {self.bot.get_uptime()}",
color=0x7289DA,
)
embed.set_author(name="Uptime", icon_url="https://yes.nighty.works/raw/y5SEZ9.webp")
embed.set_author(name="Uptime", icon_url="https://yes.nighty.works/raw/gSxqzV.png")
await interaction.response.edit_message(embed=embed, view=self)
def uptime_command():
@@ -27,7 +27,7 @@ def uptime_command():
description=f"The bot has been running for **{self.bot.get_uptime()}**",
color=0x7289DA,
)
embed.set_author(name="Uptime", icon_url="https://yes.nighty.works/raw/y5SEZ9.webp")
embed.set_author(name="Uptime", icon_url="https://yes.nighty.works/raw/gSxqzV.png")
view = UptimeView(self.bot)
if getattr(context, "interaction", None):
inter = context.interaction