mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Don't install game file metas
This commit is contained in:
parent
835d56bf68
commit
112b4e7825
@ -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
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user