Fix staging error with new patching code

This commit is contained in:
Timothy Baldridge 2019-11-21 15:35:59 -07:00
parent 96abd7aa30
commit f7a36bf20e
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ namespace Wabbajack.Lib.CompilationSteps
if (!_indexed.TryGetValue(Path.GetFileName(source.File.Name.ToLower()), out var choices))
return null;
var mod_ini = ((MO2Compiler)_compiler).ModMetas.FirstOrDefault(f => source.AbsolutePath.StartsWith(f.Key));
var mod_ini = ((MO2Compiler)_compiler).ModMetas.FirstOrDefault(f => source.Path.StartsWith(f.Key));
var installationFile = mod_ini.Value?.General?.installationFile;
var found = choices.FirstOrDefault(

View File

@ -148,7 +148,7 @@ namespace Wabbajack.Lib
{
var path = Path.Combine(f, "meta.ini");
return File.Exists(path) ? (f, path.LoadIniFile()) : default;
}).ToDictionary(f => f.f + "\\", v => v.Item2);
}).ToDictionary(f => f.f.RelativeTo(MO2Folder) + "\\", v => v.Item2);
IndexedFiles = IndexedArchives.SelectMany(f => f.File.ThisAndAllChildren)
.OrderBy(f => f.NestingFactor)