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)