Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions logic/Server/GameServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ private void SaveGameResult(string path)
}
}
}
protected virtual void SendGameResult() // 天梯的 Server 给网站发消息记录比赛结果
protected void SendGameResult() // 天梯的 Server 给网站发消息记录比赛结果
{
int[] scores = GetScore();
httpSender?.SendHttpRequest(scores);
httpSender?.SendHttpRequest(scores).Wait();
}

private void OnGameEnd()
Expand Down