aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-04-16 16:46:05 +0100
committerGravatar Chris Lovering <[email protected]>2022-04-20 22:14:51 +0100
commit695e903640d6c394dd4f23aa12fef4c7336dc74e (patch)
treece032d0f396550fcd0f8f4eb89d49ac2c9b69f34
parentMerge 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.py2
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: