From 3fe059c49dd326997bb1e9d90d556ef80c8a8a2e Mon Sep 17 00:00:00 2001 From: Mc-muffin <8714476+Mc-muffin@users.noreply.github.com> Date: Sat, 10 Jun 2023 20:38:48 -0500 Subject: [PATCH] Update ToolsTOR.py --- pythonlib/games/ToolsTOR.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pythonlib/games/ToolsTOR.py b/pythonlib/games/ToolsTOR.py index 2907448..fd4e19d 100644 --- a/pythonlib/games/ToolsTOR.py +++ b/pythonlib/games/ToolsTOR.py @@ -193,7 +193,7 @@ class ToolsTOR(ToolsTales): def extract_all_story(self, replace=False) -> None: print("Extracting Story files...") - folder_path = self.paths["story_files"] + folder_path = self.paths["story_xml"] folder_path.mkdir(exist_ok=True) scpk_path = self.paths["extracted_files"] / "DAT" / "SCPK" @@ -210,7 +210,7 @@ class ToolsTOR(ToolsTales): def extract_all_skits(self, replace=False) -> None: print("Extracting Skit files...") - folder_path = self.paths["skit_files"] + folder_path = self.paths["skit_xml"] folder_path.mkdir(exist_ok=True) pak2_path = self.paths["extracted_files"] / "DAT" / "PAK2" @@ -666,7 +666,7 @@ class ToolsTOR(ToolsTales): out_path = self.paths["temp_files"] / "DAT" / "PAK2" out_path.mkdir(parents=True, exist_ok=True) - xml_path = self.paths["skit_files"] + xml_path = self.paths["skit_xml"] pak2_path = self.paths["extracted_files"] / "DAT" / "PAK2" for file in (pbar:= tqdm(list(pak2_path.glob("*.pak2")))):