mirror of
https://github.com/ppy/osu
synced 2024-12-16 11:56:31 +00:00
Return if breaks are null
Fixes a test
This commit is contained in:
parent
172a9ce33a
commit
5a55433d6c
@ -126,6 +126,9 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
private void updateBreakTimeBindable()
|
||||
{
|
||||
if (breaks == null)
|
||||
return;
|
||||
|
||||
for (int i = 0; i < breaks.Count; i++)
|
||||
{
|
||||
if (!breaks[i].HasEffect)
|
||||
|
Loading…
Reference in New Issue
Block a user