fix(aurora): don't pass key
This commit is contained in:
parent
6c7cdd4e5e
commit
86c0cadd82
1 changed files with 1 additions and 1 deletions
|
@ -698,7 +698,7 @@ class Aurora(commands.Cog):
|
|||
stripped = t.strip().lower()
|
||||
if stripped == "all":
|
||||
type_list.clear()
|
||||
type_list.extend((t.key for t in registry_values))
|
||||
type_list.extend((t for t in registry_values))
|
||||
break
|
||||
try:
|
||||
type_list.append(type_registry[stripped])
|
||||
|
|
Loading…
Reference in a new issue