diff --git a/aurora/aurora.py b/aurora/aurora.py index db1cf89..468c760 100644 --- a/aurora/aurora.py +++ b/aurora/aurora.py @@ -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])