refactor: (description) owner command handling && fix colors

Standardized embed colors to Discord blurple (0x7289DA) across all cogs. Refactored owner command modules (say, shutdown, sync) to use a shared send_embed helper and improved error handling for permission checks. Updated botinfo title and improved bot owner/team logging in bot.py. Help command now always lists 'owner' category, removing permission checks from category display.
This commit is contained in:
neoarz
2025-09-16 10:21:36 -04:00
parent 1cc3a32e1d
commit a3f30953f6
10 changed files with 127 additions and 51 deletions

View File

@@ -35,7 +35,7 @@
# embed = discord.Embed(
# title="Message without spoilers",
# description=message.content.replace("||", ""),
# color=0xBEBEFE,
# color=0x7289DA,
# )
# if spoiler_attachment is not None:
# embed.set_image(url=attachment.url)
@@ -52,7 +52,7 @@
# """
# embed = discord.Embed(
# description=f"The ID of {user.mention} is `{user.id}`.",
# color=0xBEBEFE,
# color=0x7289DA,
# )
# await interaction.response.send_message(embed=embed, ephemeral=True)
#