diff --git a/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetReceiver.cs b/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetReceiver.cs index d85109101..298ffed6d 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetReceiver.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetReceiver.cs @@ -200,6 +200,7 @@ namespace TH1_Logic.Steam if (!LobbyManager.Instance.Lobby.IsLobbyOwner()) return; if (message.Civ == null) return; Main.Instance.MapConfig.UpdateMemberCiv(message.Civ); + Debug.Log("UpdateUIOutsideMultiplayRoomSetting"); EventManager.Publish(new UpdateUIOutsideMultiplayRoomSetting()); } @@ -225,6 +226,7 @@ namespace TH1_Logic.Steam newMemberCiv.ForceId = memberCiv.ForceId; } Main.Instance.MapConfig.CheckMapConfigChanged(); + Debug.Log("UpdateUIOutsideMultiplayRoomSetting"); EventManager.Publish(new UpdateUIOutsideMultiplayRoomSetting()); } }