diff --git a/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs b/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs index d3cdfca..e38d0f0 100644 --- a/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs +++ b/AM2RLauncher/AM2RLauncher/MainForm/MainForm.Events.cs @@ -152,7 +152,7 @@ public partial class MainForm : Form string oldSavePath = profile.SaveLocation.Replace("~", oldHomePath); string newSavePath = profile.SaveLocation.Replace("~", newHomePath); - if (Directory.Exists(newSavePath)) continue; + if (Directory.Exists(newSavePath) || !Directory.Exists(oldSavePath)) continue; log.Info($"Transfering save data for {profile.Name} from {oldSavePath} to {newSavePath} ..."); HelperMethods.DirectoryCopy(oldSavePath, newSavePath);