Skip to content

Commit

Permalink
这下对了
Browse files Browse the repository at this point in the history
  • Loading branch information
cdwcgt committed Nov 24, 2024
1 parent 6b8e435 commit bd0e0c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Tournament/Screens/Gameplay/GameplayScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 != false) return;

waitForResult.Value = true;
listener.FetchMatch();
Expand Down

0 comments on commit bd0e0c8

Please sign in to comment.