Skip to content

Commit 2a72c6d

Browse files
committed
stage_searcher: Add a couple more, and clean up code
1 parent f71cf68 commit 2a72c6d

File tree

2 files changed

+108
-115
lines changed

2 files changed

+108
-115
lines changed

randomizer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def __init__(self, seed, clean_iso_path, randomized_output_folder, options: Opti
133133
self.arcs_by_path: dict[str, RARC] = {}
134134
self.jpcs_by_path: dict[str, JPC100] = {}
135135
self.rels_by_path: dict[str, REL] = {}
136-
self.symbol_maps_by_path: dict[str, dict[int, str]] = {}
136+
self.symbol_maps_by_path: dict[str, dict[str, int]] = {}
137137
self.raw_files_by_path: dict[str, BytesIO] = {}
138138
self.used_actor_ids = list(range(0x1F6))
139139

@@ -771,7 +771,7 @@ def get_rel(self, rel_path):
771771
self.rels_by_path[rel_path] = rel
772772
return rel
773773

774-
def get_symbol_map(self, map_path):
774+
def get_symbol_map(self, map_path) -> dict[str, int]:
775775
map_path = map_path.replace("\\", "/")
776776

777777
if map_path in self.symbol_maps_by_path:

0 commit comments

Comments
 (0)