mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:17:26 +08:00
Add back null check
This commit is contained in:
parent
9aac98664c
commit
0fba93bf65
@ -247,7 +247,7 @@ namespace osu.Game.Beatmaps.ControlPoints
|
||||
break;
|
||||
}
|
||||
|
||||
return newPoint.IsRedundant(existing);
|
||||
return newPoint?.IsRedundant(existing) == true;
|
||||
}
|
||||
|
||||
private void groupItemAdded(ControlPoint controlPoint)
|
||||
|
Loading…
Reference in New Issue
Block a user