Skip to content

Commit 3616580

Browse files
committed
Update information text
1 parent 8487cf2 commit 3616580

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/cogs/help.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,10 @@ async def help(self, ctx, *params):
7777
emb.add_field(name='Not belonging to a module', value=commands_desc, inline=False)
7878

7979
# setting information about author
80-
emb.add_field(name="About", value=f"The base of this Bots is developed by nonchris, using on discord.py.\n\
81-
This version of it is maintained by {owner}\n\
82-
Please visit https://github.com/nonchris/discord-bot to submit ideas or bugs.")
80+
emb.add_field(name="About",
81+
value=f"This bot is maintained by {owner}.\n\
82+
Please visit https://github.com/nonchris/discord-bot to submit ideas or bugs.\n\
83+
Based on a template by nonchris: https://github.com/nonchris/discord-bot.\n")
8384
emb.set_footer(text=f"Bot is running Version: {VERSION}")
8485

8586
# block called when one cog-name is given
@@ -92,7 +93,7 @@ async def help(self, ctx, *params):
9293
if cog.lower() == params[0].lower():
9394

9495
# making title - getting description from doc-string below class
95-
emb = discord.Embed(title=f'{cog} - Commands', description=self.bot.cogs[cog].__doc__,
96+
emb = discord.Embed(title=f'{cog} - commands', description=self.bot.cogs[cog].__doc__,
9697
color=utl.green)
9798

9899
# getting commands from cog

0 commit comments

Comments
 (0)