From c7c771c5f489b841dcfebba19557f487ceb95612 Mon Sep 17 00:00:00 2001 From: cdwcgt Date: Sat, 23 Nov 2024 22:01:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=99=E4=B8=8B=E5=AF=B9=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- osu.Game.Tournament/Screens/Gameplay/GameplayScreen.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game.Tournament/Screens/Gameplay/GameplayScreen.cs b/osu.Game.Tournament/Screens/Gameplay/GameplayScreen.cs index 908bf41ffd56..dff089e7f77f 100644 --- a/osu.Game.Tournament/Screens/Gameplay/GameplayScreen.cs +++ b/osu.Game.Tournament/Screens/Gameplay/GameplayScreen.cs @@ -506,7 +506,7 @@ private void getResult() private void attemptGetResult() { var lastPick = CurrentMatch.Value?.PicksBans.LastOrDefault(p => p.Type == ChoiceType.Pick); - if (warmup.Value || CurrentMatch.Value == null || lastPick?.CalculatedByApi != true) return; + if (warmup.Value || CurrentMatch.Value == null || lastPick?.CalculatedByApi == true) return; waitForResult.Value = true; listener.FetchMatch();