From 2467b66050a1d6589e9d76a1476b5b28523fe9d0 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 1 Aug 2020 01:32:07 +0100 Subject: [PATCH] 6 commands per page within the cog --- cogs/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/help.py b/cogs/help.py index 2b767723..67fa7829 100644 --- a/cogs/help.py +++ b/cogs/help.py @@ -351,7 +351,7 @@ def _command_signature(cmd): class HelpPaginator(Pages): - def __init__(self, ctx, entries, *, per_page=4): + def __init__(self, ctx, entries, *, per_page=6): super().__init__(ctx, entries=entries, per_page=per_page) self.reaction_emojis.append(('\N{WHITE QUESTION MARK ORNAMENT}', self.show_bot_help)) self.total = len(entries)