Small fixes for a bunch of small issues that came up in the past few weeks.

This commit is contained in:
Timothy Baldridge 2020-03-18 20:16:38 -06:00
parent 3e2b23f07d
commit 50d2737fb5
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,11 @@
### Changelog
#### Version - 1.1.2.0 -
* We now set VRAM settings for Skyrim LE ENBs
* Fixes for Morrowind Game metadata
* We now provide suggestions for users who try to install modlists for games they don't have installed
* We now warn users if they aren't running a modern version of Windows
#### Version - 1.1.1.0 - 3/9/2020
* Hotfix for Virtual Memory errors while creating BSAs

View File

@ -334,7 +334,8 @@ namespace Wabbajack.Common
{
"SkyrimVR.exe"
},
MainExecutable = "SkyrimVR.exe"
MainExecutable = "SkyrimVR.exe",
CommonlyConfusedWith = new []{Game.Skyrim, Game.SkyrimSpecialEdition}
}
},
{

View File

@ -59,7 +59,7 @@ namespace Wabbajack.Lib
if (otherGame != null)
{
await Utils.Log(new CriticalFailureIntervention(
$"In order to do a proper install Wabbajack needs to know where your {game.HumanFriendlyGameName} folder resides. However this game doesn't seem to be installed, we did however find a installed" +
$"In order to do a proper install Wabbajack needs to know where your {game.HumanFriendlyGameName} folder resides. However this game doesn't seem to be installed, we did however find a installed " +
$"copy of {otherGame.HumanFriendlyGameName}, did you install the wrong game?",
$"Could not locate {game.HumanFriendlyGameName}"))
.Task;