From 73ccf99efc34595ecf808ea5c5689f96b721fa7b Mon Sep 17 00:00:00 2001 From: strongleong Date: Mon, 7 Feb 2022 00:06:49 +1100 Subject: [PATCH] Bugfix --- ScrapModLoader/ModsLauncher.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ScrapModLoader/ModsLauncher.cs b/ScrapModLoader/ModsLauncher.cs index af187ad..43b51b9 100644 --- a/ScrapModLoader/ModsLauncher.cs +++ b/ScrapModLoader/ModsLauncher.cs @@ -64,12 +64,14 @@ namespace ScrapModLoader if (displayName == "Scrapland") { ScraplandPath = subkey.GetValue("InstallLocation")?.ToString() ?? ""; + Settings.Default.ScraplandPath = ScraplandPath; isFound = true; } if (displayName == "Scrapland Remastered") { ScraplandRemasteredPath = subkey.GetValue("InstallLocation")?.ToString() ?? ""; + Settings.Default.ScraplandRemasteredPath = ScraplandRemasteredPath; isFound = true; } }