diff options
author | 2022-04-16 16:46:05 +0100 | |
---|---|---|
committer | 2022-04-20 22:14:51 +0100 | |
commit | 695e903640d6c394dd4f23aa12fef4c7336dc74e (patch) | |
tree | ce032d0f396550fcd0f8f4eb89d49ac2c9b69f34 | |
parent | Merge pull request #2118 from python-discord/bump-d.py-version (diff) |
Output max 10 bumped threads on list
-rw-r--r-- | bot/exts/utils/thread_bumper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/thread_bumper.py b/bot/exts/utils/thread_bumper.py index ee0636b37..6d1c64956 100644 --- a/bot/exts/utils/thread_bumper.py +++ b/bot/exts/utils/thread_bumper.py @@ -111,7 +111,7 @@ class ThreadBumper(commands.Cog): title="Threads in the bump list", colour=constants.Colours.blue ) - await LinePaginator.paginate(lines, ctx, embed) + await LinePaginator.paginate(lines, ctx, embed, max_lines=10) @commands.Cog.listener() async def on_thread_update(self, _: discord.Thread, after: discord.Thread) -> None: |