Skip to content

Commit

Permalink
Fixed Loader Config being in the wrong Location
Browse files Browse the repository at this point in the history
  • Loading branch information
HerpDerpinstine committed Feb 4, 2025
1 parent ac6b260 commit 1ab17d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MelonLoader.Bootstrap/Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
{
Expand Down

0 comments on commit 1ab17d7

Please sign in to comment.