From cb8eaa14462abe68033275fdd61956163b1ae702 Mon Sep 17 00:00:00 2001 From: Mc-muffin <8714476+Mc-muffin@users.noreply.github.com> Date: Tue, 17 Sep 2024 20:49:08 -0500 Subject: [PATCH] Undo single-event error --- pythonlib/games/ToolsTOR.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonlib/games/ToolsTOR.py b/pythonlib/games/ToolsTOR.py index e9c0451..c213fb5 100644 --- a/pythonlib/games/ToolsTOR.py +++ b/pythonlib/games/ToolsTOR.py @@ -1028,7 +1028,7 @@ class ToolsTOR(ToolsTales): comp_type = re.search(self.VALID_FILE_NAME, pak_path.name).group(2) if file.parent.stem == "PAK0": pak_path = original_files / "PAK0" / (file.name + ".pak0") - pak_o = Pak.from_path(pak_path, 1) + pak_o = Pak.from_path(pak_path, 0) for pak_file in file.glob("*.bin"): file_index = int(pak_file.name.split(".bin")[0]) with open(pak_file, "rb") as pf: