Merge pull request #18751 from frenzibyte/tournament-beatmap

Improve tournament beatmap JSON storage using lightweight model
This commit is contained in:
Dean Herbert
2022-06-18 11:00:26 +09:00
committed by GitHub
16 changed files with 128 additions and 31 deletions

View File

@ -239,7 +239,7 @@ namespace osu.Game.Tournament.Screens.Editors
req.Success += res =>
{
Model.Beatmap = res;
Model.Beatmap = new TournamentBeatmap(res);
updatePanel();
};

View File

@ -241,7 +241,7 @@ namespace osu.Game.Tournament.Screens.Editors
req.Success += res =>
{
Model.Beatmap = res;
Model.Beatmap = new TournamentBeatmap(res);
updatePanel();
};