From 4d8118ef75624249901006e96f4b6ca6dcb6b5b3 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Thu, 8 Aug 2024 05:24:44 -0400
Subject: [PATCH] Correct a few errors in filter output

---
 resources/parsers/maps.py  | 12 ++++++------
 resources/parsers/other.py |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/resources/parsers/maps.py b/resources/parsers/maps.py
index 127e591..be1129b 100644
--- a/resources/parsers/maps.py
+++ b/resources/parsers/maps.py
@@ -92,17 +92,17 @@ class MapParser():
 
         # Misc map items.
         self.template.notable_item(
-            description='Misc map Item Classes',
+            description='Misc Map Item Classes',
             class_text=[
-                "Vault Keys", "Chronicle of Atzoatl", "Inscribed Ultimatum", "Mirrored Tablet", "Primeval Remnant",
-                "Primordial Remnant",
+                "Vault Keys",
             ],
             font_size=display_dict['rare_font_size'],
         )
         self.template.notable_item(
-            description='Misc map Item Bases',
-            class_text=[
-                "Reliquary Key", "Misc Map Items",
+            description='Misc Map Item Bases',
+            base_text=[
+                "Reliquary Key", "Chronicle of Atzoatl", "Inscribed Ultimatum", "Mirrored Tablet", "Primeval Remnant",
+                "Primordial Remnant",
             ],
             font_size=display_dict['rare_font_size'],
         )
diff --git a/resources/parsers/other.py b/resources/parsers/other.py
index 99f7179..890d336 100644
--- a/resources/parsers/other.py
+++ b/resources/parsers/other.py
@@ -433,7 +433,7 @@ class FinalParser():
         # Hide any gear that has not yet been parsed.
         self.template.hidden_item(
             description='Hide remaining gear that has not yet been parsed.',
-            base_text=["Helmets", "Body Armours", "Gloves", "Boots", "Ring", "Belt", "Amulet"]
+            class_text=["Helmets", "Body Armours", "Gloves", "Boots", "Ring", "Belt", "Amulet"]
         )
 
         # Kalguur gold currency.
-- 
GitLab