From 1ab17d712628dcb957fc0b6061e738099f154590 Mon Sep 17 00:00:00 2001 From: Herp Derpinstine Date: Tue, 4 Feb 2025 12:24:22 -0600 Subject: [PATCH] Fixed Loader Config being in the wrong Location --- MelonLoader.Bootstrap/Core.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MelonLoader.Bootstrap/Core.cs b/MelonLoader.Bootstrap/Core.cs index 63735b6d..b130816d 100644 --- a/MelonLoader.Bootstrap/Core.cs +++ b/MelonLoader.Bootstrap/Core.cs @@ -50,7 +50,7 @@ private static void InitConfig() var customBaseDir = ArgParser.GetValue("melonloader.basedir"); var baseDir = Directory.Exists(customBaseDir) ? Path.GetFullPath(customBaseDir) : LoaderConfig.Current.Loader.BaseDirectory; - var path = Path.Combine(baseDir, "UserData", "Loader.cfg"); + var path = Path.Combine(baseDir, "MelonLoader", "UserData", "Loader.cfg"); if (File.Exists(path)) {