From 006a89551f182b628269bff3de13252db3bd99b3 Mon Sep 17 00:00:00 2001 From: dginovker Date: Mon, 6 Nov 2023 04:53:58 +0900 Subject: [PATCH] Fix using wrong path for singleplayer server conf --- Saradomin/Utilities/Singleplayer/SingleplayerManagement.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Saradomin/Utilities/Singleplayer/SingleplayerManagement.cs b/Saradomin/Utilities/Singleplayer/SingleplayerManagement.cs index 15c2dc2..4878807 100644 --- a/Saradomin/Utilities/Singleplayer/SingleplayerManagement.cs +++ b/Saradomin/Utilities/Singleplayer/SingleplayerManagement.cs @@ -132,7 +132,7 @@ public static class SingleplayerManagement } private static Dictionary _confCache; - private static string ConfPath => Path.Combine(CrossPlatform.GetSaradominHome(), "game", "worldprops", "default.conf"); + private static string ConfPath => Path.Combine(CrossPlatform.GetSingleplayerHome(), "game", "worldprops", "default.conf"); public static Dictionary GrabConfCache() { return File.ReadLines(ConfPath)