From 3247e55a4646934ee6d36bf07c1780880f265bc5 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Wed, 7 Aug 2024 23:06:08 -0400
Subject: [PATCH] Correct table of contents for recent changes

---
 resources/parsers/table_of_contents.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/resources/parsers/table_of_contents.py b/resources/parsers/table_of_contents.py
index 72fb695..3c07881 100644
--- a/resources/parsers/table_of_contents.py
+++ b/resources/parsers/table_of_contents.py
@@ -56,7 +56,7 @@ class TableOfContentsGenerator():
         self.filter_file.write('# [{0}] - Currency\n'.format(str(parse_num).zfill(3)))
         self.filter_file.write('# [{0}.01] - General Currency\n'.format(str(parse_num).zfill(3)))
         self.filter_file.write('# [{0}.02] - League Currency\n'.format(str(parse_num).zfill(3)))
-        self.filter_file.write('# [{0}.03] - Labyrinth Items\n'.format(str(parse_num).zfill(3)))
+        self.filter_file.write('# [{0}.03] - Quest-like Items\n'.format(str(parse_num).zfill(3)))
         self.filter_file.write('# [{0}.04] - Currency Catch-All\n'.format(str(parse_num).zfill(3)))
         self.filter_file.write('#\n')
 
@@ -87,6 +87,7 @@ class TableOfContentsGenerator():
             self.filter_file.write('# [{0}.04] - Utility Flasks\n'.format(str(parse_num).zfill(3)))
         else:
             self.filter_file.write('# [{0}.03] - Utility Flasks\n'.format(str(parse_num).zfill(3)))
+        self.filter_file.write('# [{0}.03] - Tinctures\n'.format(str(parse_num).zfill(3)))
 
         self.filter_file.write('#\n')
 
-- 
GitLab