From a918262d9976492890628e543e6f06ce9a9347ba Mon Sep 17 00:00:00 2001 From: devbeni Date: Sun, 14 Dec 2025 14:18:03 +0100 Subject: [PATCH] Always point save dir to multiplayer folder --- Main.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Main.cs b/Main.cs index 0fb01ea..5cc0928 100644 --- a/Main.cs +++ b/Main.cs @@ -1190,18 +1190,14 @@ namespace KCM public static bool Prefix(ref string __result) { Main.helper.Log("Get save dir"); - if (KCClient.client.IsConnected) + if (KCServer.IsRunning || KCClient.client.IsConnected) { - if (KCServer.IsRunning) - { - - } __result = Application.persistentDataPath + "/Saves/Multiplayer"; return false; } - __result = Application.persistentDataPath + "/Saves"; ; + __result = Application.persistentDataPath + "/Saves"; return true; } }