File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ async def plugin_registry_compact(self, ctx):
423
423
fmt = f"[`{ name } `]({ url } ) - { desc } "
424
424
length = len (fmt ) - len (url ) - 4
425
425
fmt = fmt [:75 + len (url )].strip () + '...' if length > 75 else fmt
426
- if len (fmt ) + len (pages [- 1 ]) >= 1024 :
426
+ if len (fmt ) + len (pages [- 1 ]) >= 2048 :
427
427
pages .append (fmt + '\n ' )
428
428
else :
429
429
pages [- 1 ] += fmt + '\n '
@@ -434,8 +434,8 @@ async def plugin_registry_compact(self, ctx):
434
434
em = discord .Embed (
435
435
color = self .bot .main_color ,
436
436
description = page ,
437
- title = 'Plugin Registry (Compact View)' ,
438
437
)
438
+ em .set_author (name = 'Plugin Registry' , icon_url = self .bot .user .avatar_url )
439
439
embeds .append (em )
440
440
441
441
paginator = PaginatorSession (ctx , * embeds )
You can’t perform that action at this time.
0 commit comments