discord.py icon indicating copy to clipboard operation
discord.py copied to clipboard

commands.HelpCommand

Open cop-discord opened this issue 2 years ago • 3 comments

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

cop-discord avatar May 23 '22 18:05 cop-discord

its a very niche thing, don't think its useful enough to add

Lmaxplay avatar May 25 '22 20:05 Lmaxplay

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.

Armaan533 avatar Jun 16 '22 11:06 Armaan533

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.

pranoymajumdar avatar Sep 12 '22 04:09 pranoymajumdar