aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar mathsman5133 <[email protected]>2019-11-03 14:33:10 +1100
committerGravatar mathsman5133 <[email protected]>2019-11-03 14:33:10 +1100
commitd8384b214bb0085bc53af9ef39386662957274f9 (patch)
tree129666daa4e68956494ac1eee2b32a539401a684
parentFew changes to keep formatting same as current (diff)
Show a maximum of 8 commands per page rather than 5.
-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 3513c3373..cd8c797b4 100644
--- a/bot/cogs/help.py
+++ b/bot/cogs/help.py
@@ -15,7 +15,7 @@ from bot.pagination import DELETE_EMOJI, LinePaginator
log = logging.getLogger(__name__)
-COMMANDS_PER_PAGE = 5
+COMMANDS_PER_PAGE = 8
PREFIX = constants.Bot.prefix
Category = namedtuple("Category", ["name", "description", "cogs"])