Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions rebootpy/ext/commands/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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``.
Expand Down Expand Up @@ -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', ' +')
Expand Down Expand Up @@ -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)
await self.send_page(page)