1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00

Add back null check

This commit is contained in:
smoogipoo 2020-04-17 17:10:13 +09:00
parent 9aac98664c
commit 0fba93bf65

View File

@ -247,7 +247,7 @@ namespace osu.Game.Beatmaps.ControlPoints
break;
}
return newPoint.IsRedundant(existing);
return newPoint?.IsRedundant(existing) == true;
}
private void groupItemAdded(ControlPoint controlPoint)