From 57e53ff03a7ca3d2b310eda2de4eec0d277209dc Mon Sep 17 00:00:00 2001 From: Damnae Date: Fri, 8 Sep 2017 21:36:30 +0200 Subject: [PATCH] Fix diff-specific storyboard content being lost after loading. --- osu.Game/Beatmaps/Beatmap.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Beatmaps/Beatmap.cs b/osu.Game/Beatmaps/Beatmap.cs index e4568a1919..9b32a65453 100644 --- a/osu.Game/Beatmaps/Beatmap.cs +++ b/osu.Game/Beatmaps/Beatmap.cs @@ -56,6 +56,7 @@ namespace osu.Game.Beatmaps ControlPointInfo = original?.ControlPointInfo ?? ControlPointInfo; Breaks = original?.Breaks ?? Breaks; ComboColors = original?.ComboColors ?? ComboColors; + Storyboard = original?.Storyboard ?? Storyboard; } }