Skip to content

Commit

Permalink
fix: try to fix uncooking dlc meshes
Browse files Browse the repository at this point in the history
  • Loading branch information
nikich340 committed Jul 15, 2023
1 parent fef7ecf commit 29df528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WolvenKit.App/Model/WccHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ public static async Task<int> UncookFileToPath(string basedir, string relativePa
// check if mod or vanilla file
var indir = isDLC
? Path.GetFullPath(MainController.Get().Configuration.GameDlcDir)
: Path.GetFullPath(MainController.Get().Configuration.GameContentDir);
: Path.GetFullPath(MainController.Get().Configuration.GameRootDir);
if (basedir.Contains(Path.GetFullPath(MainController.Get().Configuration.GameModDir)))
{
indir = basedir;
Expand Down

0 comments on commit 29df528

Please sign in to comment.