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();