added more logging to sync manager and added better examples for cogs

This commit is contained in:
ctih1 2025-07-27 14:36:38 +03:00
parent a20e9eb9f0
commit 4f4821d9fa
4 changed files with 132 additions and 29 deletions

View file

@ -109,14 +109,14 @@ class BaseCommands(commands.Cog):
@commands.command()
async def about(self, ctx: commands.Context) -> None:
embed: discord.Embed = discord.Embed(
title=f"{k.command_about_embed_title()}",
title=k.command_about_embed_title(),
description="",
color=discord.Colour(0x000000),
)
embed.add_field(
name=k.command_about_embed_field1(),
value=f"{settings['name']}",
value=settings['name'],
inline=False,
)