diff --git a/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetReceiver.cs b/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetReceiver.cs index dff9e8e42..822ab6849 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetReceiver.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetReceiver.cs @@ -64,11 +64,11 @@ namespace TH1_Logic.Steam if (!LobbyManager.Instance.Lobby.IsLobbyOwner()) return; if (message.ActionData == null) return; - if (message.ActionData.MapHash != Main.MapData.Net.MapHash) - { - LogSystem.LogError($"OnReceivedActionConfirm MapHash不一致"); - return; - } + // if (message.ActionData.MapHash != Main.MapData.Net.MapHash) + // { + // LogSystem.LogError($"OnReceivedActionConfirm MapHash不一致"); + // return; + // } if (message.ActionData.Version != Main.MapData.Net.GetActionVersion()) { LogSystem.LogError($"OnReceivedActionConfirm Version 不一致"); @@ -95,11 +95,11 @@ namespace TH1_Logic.Steam } if (LobbyManager.Instance.Lobby.IsLobbyOwner()) return; if (message.ActionData == null) return; - if (message.ActionData.MapHash != Main.MapData.Net.MapHash) - { - LogSystem.LogError($"OnReceivedActionConfirm MapHash不一致"); - return; - } + // if (message.ActionData.MapHash != Main.MapData.Net.MapHash) + // { + // LogSystem.LogError($"OnReceivedActionConfirm MapHash不一致"); + // return; + // } if (message.ActionData.Version != Main.MapData.Net.GetActionVersion()) { LogSystem.LogError($"OnReceivedActionConfirm Version 不一致");