From f4c3b4aae734ed3d6064ce4a6abd2a3fcb35bed4 Mon Sep 17 00:00:00 2001 From: neoarz Date: Fri, 3 Oct 2025 11:27:19 -0400 Subject: [PATCH] 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. --- cogs/general/botinfo.py | 2 +- cogs/general/feedback.py | 4 ++-- cogs/general/ping.py | 2 +- cogs/general/serverinfo.py | 2 +- cogs/general/uptime.py | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cogs/general/botinfo.py b/cogs/general/botinfo.py index 0cb2fd5..c3473d5 100644 --- a/cogs/general/botinfo.py +++ b/cogs/general/botinfo.py @@ -12,7 +12,7 @@ def botinfo_command(): title="Syntrel Discord Bot", color=0x7289DA, ) - embed.set_author(name="Bot Information", icon_url="https://yes.nighty.works/raw/y5SEZ9.webp") + embed.set_author(name="Bot Information", icon_url="https://yes.nighty.works/raw/gSxqzV.png") embed.add_field(name="Owner:", value="[neoarz](https://discordapp.com/users/1015372540937502851)", inline=True) embed.add_field( name="Python Version:", value=f"{platform.python_version()}", inline=True diff --git a/cogs/general/feedback.py b/cogs/general/feedback.py index 98b6b7f..960d750 100644 --- a/cogs/general/feedback.py +++ b/cogs/general/feedback.py @@ -31,7 +31,7 @@ def feedback_command(): title="Thank You!", description="Your feedback has been submitted, the owners have been notified about it.", color=0x7289DA, - ).set_author(name="Feedback System", icon_url="https://yes.nighty.works/raw/y5SEZ9.webp"), + ).set_author(name="Feedback System", icon_url="https://yes.nighty.works/raw/gSxqzV.png"), ephemeral=True, ) @@ -41,7 +41,7 @@ def feedback_command(): title="New Feedback", description=f"{interaction.user} (<@{interaction.user.id}>) has submitted a new feedback:\n```\n{feedback_form.answer}\n```", color=0x7289DA, - ).set_author(name="Feedback System", icon_url="https://yes.nighty.works/raw/y5SEZ9.webp") + ).set_author(name="Feedback System", icon_url="https://yes.nighty.works/raw/gSxqzV.png") ) return feedback \ No newline at end of file diff --git a/cogs/general/ping.py b/cogs/general/ping.py index 7d3ec13..195cb46 100644 --- a/cogs/general/ping.py +++ b/cogs/general/ping.py @@ -12,7 +12,7 @@ def ping_command(): description=f"The bot latency is {round(self.bot.latency * 1000)}ms.", color=0x7289DA, ) - embed.set_author(name="Ping", icon_url="https://yes.nighty.works/raw/y5SEZ9.webp") + embed.set_author(name="Ping", icon_url="https://yes.nighty.works/raw/gSxqzV.png") if getattr(context, "interaction", None): inter = context.interaction if not inter.response.is_done(): diff --git a/cogs/general/serverinfo.py b/cogs/general/serverinfo.py index 1d30497..691b830 100644 --- a/cogs/general/serverinfo.py +++ b/cogs/general/serverinfo.py @@ -23,7 +23,7 @@ def serverinfo_command(): title="**Server Name:**", description=f"{context.guild}", color=0x7289DA - ).set_author(name="Server Information", icon_url="https://yes.nighty.works/raw/y5SEZ9.webp") + ).set_author(name="Server Information", icon_url="https://yes.nighty.works/raw/gSxqzV.png") if context.guild.icon is not None: embed.set_thumbnail(url=context.guild.icon.url) diff --git a/cogs/general/uptime.py b/cogs/general/uptime.py index b3aee27..fe8e044 100644 --- a/cogs/general/uptime.py +++ b/cogs/general/uptime.py @@ -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