Merge pull request #1341 from LostDragonist/omod_fix

Fix compiling with OMODs
This commit is contained in:
Timothy Baldridge 2021-02-28 14:27:00 -07:00 committed by GitHub
commit 278bfec349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ namespace Wabbajack.VirtualFileSystem
var path = file.RelativeTo(dest.Dir); var path = file.RelativeTo(dest.Dir);
if (!shouldExtract(path)) continue; if (!shouldExtract(path)) continue;
var result = await mapfn(path, new ExtractedNativeFile(file, path)); var result = await mapfn(path, new ExtractedNativeFile(file));
results.Add(path, result); results.Add(path, result);
} }