This commit is contained in:
2025-12-14 01:10:03 +01:00
parent 414ab90afc
commit 93c55dd482
3 changed files with 6 additions and 43 deletions

View File

@@ -332,19 +332,6 @@ namespace KCM.LoadSaveOverrides
Main.helper.Log($"Setting kingdom name to: {kingdomNames[Main.PlayerSteamID]}");
TownNameUI.inst.SetTownName(kingdomNames[Main.PlayerSteamID]);
// Force transition to PlayingMode to enable villager movement
try
{
Main.helper.Log("MultiplayerSaveContainer.Unpack: Setting PlayingMode");
GameState.inst.SetNewMode(GameState.inst.playingMode);
Main.helper.Log("MultiplayerSaveContainer.Unpack: PlayingMode set successfully");
}
catch (Exception e)
{
Main.helper.Log("MultiplayerSaveContainer.Unpack: Failed to set PlayingMode");
Main.helper.Log(e.ToString());
}
return obj;
}
}