Update help.py

This commit is contained in:
Elmon11 2020-10-31 03:03:39 +01:00 committed by GitHub
parent 873e32e7b9
commit e4bf0d8b25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,7 @@ class Help(commands.Cog):
command_list += f'**{ctx.prefix}{command.name}** - {command.help}\n'
if command_list:
em.add_field(name=cog, value=command_list, inline=False)
em.set_footer(text=f'Requested by {ctx.message.author}', icon_url=tget_avatar(ctx.message.author))
em.set_footer(text=f'Requested by {ctx.message.author}', icon_url=get_avatar(ctx.message.author))
await ctx.send(embed=em)
def setup(bot):