Fix for absolute path in Steam game files

This commit is contained in:
Timothy Baldridge 2020-05-14 16:28:25 -06:00
parent 23fecce38b
commit 6225caabaf
2 changed files with 17 additions and 3 deletions

View File

@ -4,6 +4,7 @@
* Make the CDN downloads multi-threaded
* Optimize installation of included files
* Reinstate a broken feature with disabled mods
* Fix for Absolute Paths in Steam files
#### Version - 2.0.4.4 - 5/11/2020
* BA2s store file names as UTF8 instead of UTF7

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security;
using Microsoft.Win32;
@ -155,9 +156,21 @@ namespace Wabbajack.Common.StoreHandlers
if (!l.ContainsCaseInsensitive("\"installdir\""))
return;
var path = new RelativePath("common").Combine(GetVdfValue(l)).RelativeTo(u);
if (path.Exists)
game.Path = path;
var value = GetVdfValue(l);
AbsolutePath absPath;
if (Path.IsPathRooted(value))
{
absPath = (AbsolutePath)value;
}
else
{
absPath = new RelativePath("common").Combine(GetVdfValue(l)).RelativeTo(u);
}
if (absPath.Exists)
game.Path = absPath;
});
if (!gotID || !game.Path.IsDirectory) return;