Set Value instead of BindTo

This commit is contained in:
tgi74000 2018-04-15 20:23:57 +02:00
parent 4c08aa3dfb
commit 3454ec1ca3
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ protected void LoadScore(Score s)
}
Beatmap.Value = BeatmapManager.GetWorkingBeatmap(s.Beatmap);
Beatmap.Value.Mods.BindTo(new Bindable<IEnumerable<Mod>>(s.Mods));
Beatmap.Value.Mods.Value = s.Mods;
menu.Push(new PlayerLoader(new ReplayPlayer(s.Replay)));
}