mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix staging error with new patching code
This commit is contained in:
parent
96abd7aa30
commit
f7a36bf20e
@ -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(
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user