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 @@ -347,7 +347,7 @@ async def plugin_registry_compact(self, ctx):
347
347
fmt = f"[`{ name } `]({ url } ) - { desc } "
348
348
length = len (fmt ) - len (url ) - 4
349
349
fmt = fmt [:75 + len (url )].strip () + '...' if length > 75 else fmt
350
- if len (fmt ) + len (pages [- 1 ]) >= 1024 :
350
+ if len (fmt ) + len (pages [- 1 ]) >= 2048 :
351
351
pages .append (fmt + '\n ' )
352
352
else :
353
353
pages [- 1 ] += fmt + '\n '
@@ -358,8 +358,8 @@ async def plugin_registry_compact(self, ctx):
358
358
em = discord .Embed (
359
359
color = self .bot .main_color ,
360
360
description = page ,
361
- title = 'Plugin Registry (Compact View)' ,
362
361
)
362
+ em .set_author (name = 'Plugin Registry' , icon_url = self .bot .user .avatar_url )
363
363
embeds .append (em )
364
364
365
365
paginator = PaginatorSession (ctx , * embeds )
You can’t perform that action at this time.
0 commit comments