Warning message will appear if you try to install a Vortex ModList

This commit is contained in:
erri120 2019-11-11 12:50:16 +01:00 committed by Timothy Baldridge
parent d65085e1ab
commit 1024d4a2e2

View File

@ -147,6 +147,13 @@ namespace Wabbajack
this.MWVM.MainWindow.Close();
});
return default(ModListVM);
}else if (modList.ModManager == ModManager.Vortex)
{
MessageBox.Show(
"The ModList you are about to install was compiled from a Vortex installation. " +
"Vortex support is still very bleeding edge and installing this ModList WILL OVERRIDE your existing mods. " +
"If you encounter any errors during installation go to our discord and ping erri120#2285 with your error and a log file.",
"Important information regarding Vortex support", MessageBoxButton.OK, MessageBoxImage.Stop);
}
return new ModListVM(modList, modListPath);
})