diff options
author | 2019-11-03 14:33:10 +1100 | |
---|---|---|
committer | 2019-11-03 14:33:10 +1100 | |
commit | d8384b214bb0085bc53af9ef39386662957274f9 (patch) | |
tree | 129666daa4e68956494ac1eee2b32a539401a684 | |
parent | Few 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.py | 2 |
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"]) |