discord.py
discord.py copied to clipboard
commands.HelpCommand
Summary
ability to change command type of commands.HelpCommand
What is the feature request for?
discord.ext.commands
The Problem
You can’t change the command type from commands.command(regular command), to app_command or what I personally wanted to change it to, being a hybrid command.
The Ideal Solution
in the help command class being commands.HelpCommand. Example Of the solution:
class Help(commands.HelpCommand, type=commands.hybrid_command)
The Current Solution
Rewrite your help command under a hybrid or app command but, if you use a whole class like i do, this can be problematic and rather annoying.
Additional Context
No response
its a very niche thing, don't think its useful enough to add
As a bot developer, I think it is a pretty good feature to add because when the bot will be totally in slash commands how we will modify the help command to be in slash.
As a bot developer, I think it is a pretty good feature to add because when the bot will be totally in slash commands how we will modify the help command to be in slash.
I use the commands.HelpCommand in hybrid Command and it's really easy if you have some tricky mind.