@@ -77,9 +77,10 @@ async def help(self, ctx, *params):
77
77
emb .add_field (name = 'Not belonging to a module' , value = commands_desc , inline = False )
78
78
79
79
# 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 " )
83
84
emb .set_footer (text = f"Bot is running Version: { VERSION } " )
84
85
85
86
# block called when one cog-name is given
@@ -92,7 +93,7 @@ async def help(self, ctx, *params):
92
93
if cog .lower () == params [0 ].lower ():
93
94
94
95
# 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__ ,
96
97
color = utl .green )
97
98
98
99
# getting commands from cog
0 commit comments