diff options
| author | Saghm Rossi <git@saghm.com> | 2026-05-14 21:28:45 -0400 |
|---|---|---|
| committer | Saghm Rossi <git@saghm.com> | 2026-05-14 21:28:57 -0400 |
| commit | 63aa1c73f31b8972f15b3c89b5a8475d357d6f61 (patch) | |
| tree | 9330644c930bbbfc7da10edace254e3d00ed3dfa /libs | |
| parent | fce34782ae99291a5ffe520266db34e9d9c6a67d (diff) | |
pass correct path when packing loose files
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/basic_games/games/baldursgate3/pak_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/basic_games/games/baldursgate3/pak_parser.py b/libs/basic_games/games/baldursgate3/pak_parser.py index be1bfa3..f051703 100644 --- a/libs/basic_games/games/baldursgate3/pak_parser.py +++ b/libs/basic_games/games/baldursgate3/pak_parser.py @@ -130,8 +130,8 @@ class BG3PakParser: build_pak = False if build_pak: pak_path.unlink(missing_ok=True) - larian_formats.pack_loose_files(file, pak_path) + larian_formats.pack_loose_files(file.parent, pak_path) output = "" try: |
