Don't install game file metas

This commit is contained in:
Timothy Baldridge 2021-01-28 21:13:36 -07:00
parent 835d56bf68
commit 112b4e7825
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,12 @@
### Changelog
#### Version - 2.4.1.2 - 1/29/2020
* Don't install .meta files for files sourced from the game folder
* Fix bug MO2 archive name detection in .meta files (rare bug with FO4VR and other like games)
* Catch exceptions when ECS downloads manifest data
* Don't double-index game files in some situations (duplicate game names in config files)
* Update all deps
#### Version - 2.4.1.1 - 1/13/2020
* HOTFIX: Fix game file sources that don't have MO2 specific names

View File

@ -262,7 +262,7 @@ namespace Wabbajack.Lib
if (HashedArchives.TryGetValue(archive.Hash, out var paths))
{
var metaPath = paths.WithExtension(Consts.MetaFileExtension);
if (!metaPath.Exists)
if (!metaPath.Exists && !(archive.State is GameFileSourceDownloader.State))
{
Status($"Writing {metaPath.FileName}");
var meta = AddInstalled(archive.State.GetMetaIni()).ToArray();