mirror of
https://github.com/ppy/osu
synced 2025-02-23 22:27:13 +00:00
Fix BeatmapInfo.Clone
potentially not cloning if already detached
This commit is contained in:
parent
5dd0bb1218
commit
c831e9107a
@ -182,7 +182,7 @@ namespace osu.Game.Beatmaps
|
||||
|
||||
public int BeatmapVersion;
|
||||
|
||||
public BeatmapInfo Clone() => this.Detach();
|
||||
public BeatmapInfo Clone() => (BeatmapInfo)this.Detach().MemberwiseClone();
|
||||
|
||||
public override string ToString() => this.GetDisplayTitle();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user