From 6c096c7b2e323bc3165c8c88c8f707d847fd77e7 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Tue, 29 Jan 2019 18:22:20 -0600 Subject: [PATCH] Fixed config location --- IPA.Loader/Config/SelfConfig.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/IPA.Loader/Config/SelfConfig.cs b/IPA.Loader/Config/SelfConfig.cs index 24fbfe02..f5c2d7f1 100644 --- a/IPA.Loader/Config/SelfConfig.cs +++ b/IPA.Loader/Config/SelfConfig.cs @@ -1,6 +1,5 @@ using IPA.Logging; using IPA.Utilities; -using System.IO; namespace IPA.Config { @@ -30,7 +29,7 @@ namespace IPA.Config 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";