Skip to content

Commit

Permalink
do not show warning text when warmup
Browse files Browse the repository at this point in the history
  • Loading branch information
cdwcgt committed Nov 17, 2024
1 parent c633811 commit 38704cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osu.Game.Tournament/Screens/Gameplay/GameplayScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,8 @@ private void expand()
using (BeginDelayedSequence(300))
{
scoreDisplay.FadeIn(100);
scoreWarningContainer.FadeIn(100);
if (!warmup.Value)
scoreWarningContainer.FadeIn(100);
}
}

Expand Down

0 comments on commit 38704cf

Please sign in to comment.