From 7797e8c771ec2d3c07cb691eb30483fd597d20a1 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Fri, 8 Jun 2018 12:06:12 -0800 Subject: [PATCH] Added embed metadata --- src/exts/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/exts/utils.py b/src/exts/utils.py index 2aa0ca5..5f50d21 100644 --- a/src/exts/utils.py +++ b/src/exts/utils.py @@ -703,6 +703,9 @@ class Utils: @commands.cooldown(1, 5, commands.BucketType.user) async def custom_help(self, ctx, command: str=None): pag = utils.Paginator(self.bot, embed=True, max_line_length=44) + pag.set_embed_meta(title='Geeksbot Help', + description=f'{self.bot.description}', + thumbnail=f'{ctx.guild.me.avatar_url}') if command is None: pag.add('\uFFF6My new help\nTest message\n\uFFF7\n\uFFF8') for cog in sorted(self.bot.cogs):