We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be good if we can specify None for disabling message command(old style one).
discord.ext.commands
commands.Bot has many good things, such as listener, Extensions, Cogs. So I want to use these things, without message commands.
Disable message command with command_prefix=None.
command_prefix=None
command_prefix=" " solves this, but None is more beautiful and simple.
command_prefix=" "
No response
The text was updated successfully, but these errors were encountered:
This was solved in #7809 where we allow command_prefix=[], versus command_prefix=None.
command_prefix=[]
Sorry, something went wrong.
No branches or pull requests
Summary
It would be good if we can specify None for disabling message command(old style one).
What is the feature request for?
discord.ext.commands
The Problem
commands.Bot has many good things, such as listener, Extensions, Cogs. So I want to use these things, without message commands.
The Ideal Solution
Disable message command with
command_prefix=None
.The Current Solution
command_prefix=" "
solves this, but None is more beautiful and simple.Additional Context
No response
The text was updated successfully, but these errors were encountered: