From 29df52862eab34378e56106cf02e2445bb2a790f Mon Sep 17 00:00:00 2001 From: Nikita Grebenyuk Date: Sun, 16 Jul 2023 03:23:58 +1000 Subject: [PATCH] fix: try to fix uncooking dlc meshes --- WolvenKit.App/Model/WccHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WolvenKit.App/Model/WccHelper.cs b/WolvenKit.App/Model/WccHelper.cs index 048caea3e..ea6280ceb 100644 --- a/WolvenKit.App/Model/WccHelper.cs +++ b/WolvenKit.App/Model/WccHelper.cs @@ -563,7 +563,7 @@ public static async Task 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;