You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commands can be created without a bot object at all so it's improbable to configure them in such a way currently without resorting to a merge trick upon the command object being added. If this feature were to be implemented it'd have to be using command_attrs=dict(ignore_extra=False) instead. I'm unsure how feasible this is though.
The Problem
Problem that I have to write ignore_extra=False in all commands when I want to raise
Too many arguments
.The Ideal Solution
ignore_extra option in commands.Bot.
Like:
The Current Solution
write
ignore_extra=False
to all@bot.command
(or@commands.command
)or change the lib.(core.py line 230)
(Maybe not right sentence, sorry. I'm Japanese)
The text was updated successfully, but these errors were encountered: