diff --git a/rebootpy/ext/commands/help.py b/rebootpy/ext/commands/help.py index 7d78a22..e3979e3 100644 --- a/rebootpy/ext/commands/help.py +++ b/rebootpy/ext/commands/help.py @@ -98,7 +98,7 @@ class Paginator: def __init__(self, prefix: str = '', suffix: str = '', - max_size: int = 10000) -> None: + max_size: int = 100) -> None: self.prefix = prefix self.suffix = suffix self.max_size = max_size @@ -909,10 +909,10 @@ class FortniteHelpCommand(HelpCommand): Defaults to ``No Category``. height: :class:`int` The maximum number of lines to fit. - Defaults to ``15``. + Defaults to ``6``. width: :class:`int` The maximum number of characters that fit in a line. - Defaults to ``60``. + Defaults to ``39``. indent: :class:`int` How much to indent the commands and other text from a title. Defaults to ``4``. @@ -955,8 +955,8 @@ def __init__(self, **options: dict) -> None: self.no_category = options.pop('no_category_heading', 'No Category') - self.height = options.pop('height', 15) - self.width = options.pop('width', 60) + self.height = options.pop('height', 6) + self.width = options.pop('width', 39) self.indent = options.pop('indent', 4) self.title_prefix = options.pop('title_prefix', ' +') @@ -1552,4 +1552,4 @@ async def send_cog_help(self, cog: Cog, page: str) -> None: '\u200b\n' + '\n'.join(page_chunks) ) - await self.send_page(page) \ No newline at end of file + await self.send_page(page)