mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix double indexing for the same game
This commit is contained in:
parent
4a32fc1415
commit
bb7e039157
@ -182,7 +182,9 @@ namespace Wabbajack.Lib
|
||||
{
|
||||
if (UseGamePaths)
|
||||
{
|
||||
foreach (var ag in Settings.IncludedGames.Cons(CompilingGame.Game))
|
||||
//taking the games in Settings.IncludedGames + currently compiling game so you can eg
|
||||
//include the stock game files if you are compiling for a VR game (ex: Skyrim + SkyrimVR)
|
||||
foreach (var ag in Settings.IncludedGames.Cons(CompilingGame.Game).Distinct())
|
||||
{
|
||||
try
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user