We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04df6ea commit 7e12199Copy full SHA for 7e12199
cogs/plugins.py
@@ -347,7 +347,7 @@ async def plugin_registry_compact(self, ctx):
347
fmt = f"[`{name}`]({url}) - {desc}"
348
length = len(fmt) - len(url) - 4
349
fmt = fmt[:75 + len(url)].strip() + '...' if length > 75 else fmt
350
- if len(fmt) + len(pages[-1]) >= 1024:
+ if len(fmt) + len(pages[-1]) >= 2048:
351
pages.append(fmt+'\n')
352
else:
353
pages[-1] += fmt + '\n'
@@ -358,8 +358,8 @@ async def plugin_registry_compact(self, ctx):
358
em = discord.Embed(
359
color=self.bot.main_color,
360
description=page,
361
- title='Plugin Registry (Compact View)',
362
)
+ em.set_author(name='Plugin Registry', icon_url=self.bot.user.avatar_url)
363
embeds.append(em)
364
365
paginator = PaginatorSession(ctx, *embeds)
0 commit comments