Browse Source

Fixed config location

pull/46/head
Anairkoen Schno 5 years ago
parent
commit
a7452f1d50
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      IPA.Loader/Config/SelfConfig.cs

+ 1
- 2
IPA.Loader/Config/SelfConfig.cs View File

@ -1,6 +1,5 @@
using IPA.Logging; using IPA.Logging;
using IPA.Utilities; using IPA.Utilities;
using System.IO;
namespace IPA.Config namespace IPA.Config
{ {
@ -30,7 +29,7 @@ namespace IPA.Config
public static void Set() public static void Set()
{ {
LoaderConfig = Config.GetProviderFor(Path.Combine("UserData", IPA_Name), "json");
LoaderConfig = Config.GetProviderFor(IPA_Name, "json");
} }
internal const string IPA_Name = "Beat Saber IPA"; internal const string IPA_Name = "Beat Saber IPA";


Loading…
Cancel
Save