forked from gooberinc/goober
added more logging to sync manager and added better examples for cogs
This commit is contained in:
parent
a20e9eb9f0
commit
4f4821d9fa
4 changed files with 132 additions and 29 deletions
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue