Revert forced cloning of ControlPointInfo

This reverts commit 3c3e860dbc.

Closes https://github.com/ppy/osu/issues/11491.
This commit is contained in:
Dean Herbert
2021-01-15 17:34:01 +09:00
parent 40f020c683
commit d6e6b4bbee
5 changed files with 14 additions and 12 deletions

View File

@ -50,15 +50,7 @@ namespace osu.Game.Beatmaps
IBeatmap IBeatmap.Clone() => Clone();
public Beatmap<T> Clone()
{
var clone = (Beatmap<T>)MemberwiseClone();
clone.ControlPointInfo = ControlPointInfo.CreateCopy();
// todo: deep clone other elements as required.
return clone;
}
public Beatmap<T> Clone() => (Beatmap<T>)MemberwiseClone();
}
public class Beatmap : Beatmap<HitObject>