Have DefaultHelpCommand
use get_bot_mapping
#9329
Labels
unconfirmed bug
A bug report that needs triaging
DefaultHelpCommand
use get_bot_mapping
#9329
Summary
DefaultHelpCommand does not use and ignores the mapping provided to send_bot_help.
Reproduction Steps
It's impossible to customize the DefaultHelpCommand implementation by altering it's
get_bot_mapping
implementation.It seems DefaultHelpCommand just ignores the mapping argument passed to it and "scours" the bot manually itself. There doesn't seem to be a good reason for that, but maybe I am missing something?
Would it be possible to rewrite DefaultHelpCommand's
send_bot_help
implementation to use the provided mapping instead of gathering one itself? That way it would be easily possible to adjust which commands to display and how without having to reimplementsend_bot_help
itself.Minimal Reproducible Code
Expected Results
Overriding and changing
get_bot_mapping
should result in the actual output ofsend_bot_help
to change.Actual Results
Output of
send_bot_help
remains unphased.Intents
message_content = True, but seems irrelevant
System Information
Checklist
Additional Context
I've been trying to change the structure of the !help output to better suit my cog layout/structure. Also see the following SO question for more background: https://stackoverflow.com/questions/75908271/how-to-make-a-cog-a-prefix-command-group
The text was updated successfully, but these errors were encountered: