aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Kyle Stanley <[email protected]>2020-06-28 00:36:51 -0400
committerGravatar Kyle Stanley <[email protected]>2020-06-28 00:36:51 -0400
commit3fd39e84a3f8d86839ed17766a7e7b2d72ed6074 (patch)
tree79a3d1de92799faa0fbe53c9edb8526a0dcb31c4
parentFix grammar in LinePaginator.add_lines() docstring (diff)
Lower LinePaginator max_size arg in CustomHelpCommand.send_bot_help
-rw-r--r--bot/cogs/help.py2
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):