From 33cd6866db5aa86186f17462f698b61689594038 Mon Sep 17 00:00:00 2001 From: Changli Tang <84725343+TCL606@users.noreply.github.com> Date: Sat, 29 Apr 2023 23:55:31 +0800 Subject: [PATCH] fix: del send msg in server --- logic/Server/GameServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logic/Server/GameServer.cs b/logic/Server/GameServer.cs index 6573e7b..17f9ce8 100644 --- a/logic/Server/GameServer.cs +++ b/logic/Server/GameServer.cs @@ -123,7 +123,7 @@ namespace Server mwr?.Flush(); if (options.ResultFileName != DefaultArgumentOptions.FileName) SaveGameResult(options.ResultFileName.EndsWith(".json") ? options.ResultFileName : options.ResultFileName + ".json"); - SendGameResult(); + // SendGameResult(); this.endGameSem.Release(); } public void ReportGame(GameState gameState, bool requiredGaming = true)