From 1024d4a2e28fd2a009684101569a769193987995 Mon Sep 17 00:00:00 2001 From: erri120 Date: Mon, 11 Nov 2019 12:50:16 +0100 Subject: [PATCH] Warning message will appear if you try to install a Vortex ModList --- Wabbajack/View Models/InstallerVM.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Wabbajack/View Models/InstallerVM.cs b/Wabbajack/View Models/InstallerVM.cs index d91d87df..00710085 100644 --- a/Wabbajack/View Models/InstallerVM.cs +++ b/Wabbajack/View Models/InstallerVM.cs @@ -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); })