mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
add a info message before asking for the game folder
This commit is contained in:
parent
9c87af84d6
commit
d070b0f245
@ -83,10 +83,19 @@ namespace Wabbajack
|
||||
Directory.CreateDirectory(Outputfolder);
|
||||
Directory.CreateDirectory(DownloadFolder);
|
||||
|
||||
if (ModList.Directives.OfType<RemappedInlineFile>().FirstOrDefault() != null && !LocateGameFolder())
|
||||
if (ModList.Directives.OfType<RemappedInlineFile>().FirstOrDefault() != null ||
|
||||
ModList.Directives.OfType<CleanedESM>().FirstOrDefault() != null)
|
||||
{
|
||||
Info("Stopping installation because game folder was not selected");
|
||||
return;
|
||||
MessageBox.Show(
|
||||
"In order to do a proper install Wabbajack needs to know where your game folder resides. This is most likely " +
|
||||
"somewhere in one of your Steam folders. Please select this folder on the next screen." +
|
||||
"Note: This is not the install location where Mod Organizer 2 will be installed. ",
|
||||
"Select your Game Folder", MessageBoxButton.OK);
|
||||
if (!LocateGameFolder())
|
||||
{
|
||||
Info("Stopping installation because game folder was not selected");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
HashArchives();
|
||||
|
Loading…
Reference in New Issue
Block a user