Skip to content

Commit

Permalink
Switch over to the default help command (paginated)
Browse files Browse the repository at this point in the history
  • Loading branch information
LightSage committed Jul 19, 2024
1 parent 69c220e commit f1fe4d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion twlhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import discord
import gspread
from discord.ext import commands
from jishaku.help_command import DefaultPaginatorHelp

from settings import loadSettings
from utils.utils import create_error_embed
Expand Down Expand Up @@ -44,7 +45,7 @@ def __init__(self, settings: Dict[str, Any], description: str):
self.settings = settings
super().__init__(
command_prefix=settings['PREFIX'],
help_command=EmbedHelp(),
help_command=DefaultPaginatorHelp(paginator=commands.Paginator(max_size=1250)),
description=description,
intents=intents,
allowed_mentions=allowed_mentions,
Expand Down

0 comments on commit f1fe4d2

Please sign in to comment.