diff options
author | 2020-06-28 00:36:51 -0400 | |
---|---|---|
committer | 2020-06-28 00:36:51 -0400 | |
commit | 3fd39e84a3f8d86839ed17766a7e7b2d72ed6074 (patch) | |
tree | 79a3d1de92799faa0fbe53c9edb8526a0dcb31c4 | |
parent | Fix grammar in LinePaginator.add_lines() docstring (diff) |
Lower LinePaginator max_size arg in CustomHelpCommand.send_bot_help
-rw-r--r-- | bot/cogs/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/help.py b/bot/cogs/help.py index f59d30c9a..832f6ea6b 100644 --- a/bot/cogs/help.py +++ b/bot/cogs/help.py @@ -346,7 +346,7 @@ class CustomHelpCommand(HelpCommand): # add any remaining command help that didn't get added in the last iteration above. pages.append(page) - await LinePaginator.paginate(pages, self.context, embed=embed, max_lines=1, max_size=2040) + await LinePaginator.paginate(pages, self.context, embed=embed, max_lines=1, max_size=2000) class Help(Cog): |