Removed a faulty default alias in the Command base class; since commands are more strictly compared by key *and* alias, this could cause some confusing overload scenarios.
This commit is contained in:
parent
8e554ef8f6
commit
82a80174f0
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ class Command(BaseCommand):
|
|||
# these need to be specified
|
||||
|
||||
key = "MyCommand"
|
||||
aliases = ["mycmd", "myc"]
|
||||
aliases = []
|
||||
locks = "cmd:all()"
|
||||
help_category = "General"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue