mirror of
https://github.com/ppy/osu
synced 2025-03-11 05:49:12 +00:00
removed useless bool
This commit is contained in:
parent
ab8fb2edab
commit
0b1db1502d
@ -73,11 +73,9 @@ namespace osu.Game.Screens.Play.HUD
|
||||
appearTransform();
|
||||
}
|
||||
|
||||
private bool playIsRanked => !mods.Value.Any(m => !m.Ranked);
|
||||
|
||||
private void appearTransform()
|
||||
{
|
||||
if (!playIsRanked)
|
||||
if (mods.Value.Any(m => !m.Ranked))
|
||||
unrankedText.FadeInFromZero(fade_duration, EasingTypes.OutQuint);
|
||||
else
|
||||
unrankedText.Hide();
|
||||
|
Loading…
Reference in New Issue
Block a user