Rename is-in-any check method to a more legible name

This commit is contained in:
Salman Ahmed
2020-04-29 05:08:38 +03:00
parent 8d899f4e77
commit 6e76e5900a
3 changed files with 13 additions and 13 deletions

View File

@ -48,7 +48,7 @@ namespace osu.Game.Screens.Play
var time = Clock.CurrentTime;
isBreakTime.Value = tracker.Contains(time)
isBreakTime.Value = tracker.IsInAny(time)
|| time < gameplayStartTime
|| scoreProcessor?.HasCompleted == true;
}