From 6c7cdd4e5eb971ca56a6bd3bae18bb9061e0373e Mon Sep 17 00:00:00 2001 From: Seaswimmer Date: Tue, 13 Aug 2024 16:38:20 -0400 Subject: [PATCH] fix(aurora): fixed `all` type --- aurora/aurora.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/aurora.py b/aurora/aurora.py index 304b38f..db1cf89 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 = registry_values + type_list.extend((t.key for t in registry_values)) break try: type_list.append(type_registry[stripped])