We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 966aeb6 commit 48d55aaCopy full SHA for 48d55aa
1 file changed
games/baldursgate3/pak_parser.py
@@ -154,7 +154,8 @@ def _get_metadata_for_file(
154
f"pak with same name as packable dir exists in mod directory. not packing dir {file}"
155
)
156
return ""
157
- pak_path = self._utils.overwrite_path / f"Mods/{file.name}.pak"
+ parent_mod_name = file.parent.name.replace(" ", "_")
158
+ pak_path = self._utils.overwrite_path / f"Mods/{parent_mod_name}_{file.name}.pak"
159
build_pak = True
160
if pak_path.exists():
161
pak_creation_time = os.path.getmtime(pak_path)
0 commit comments