1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:42:55 +08:00

Fix nullref.

This commit is contained in:
smoogipooo 2017-03-17 14:56:50 +09:00
parent 67c9bb37fd
commit 74a1837a05

View File

@ -15,6 +15,7 @@ namespace osu.Game.Beatmaps.Legacy
public LegacyBeatmap(Beatmap original = null)
: base(original)
{
HitObjects = original?.HitObjects ?? null;
}
}
}