mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Merge pull request #18751 from frenzibyte/tournament-beatmap
Improve tournament beatmap JSON storage using lightweight model
This commit is contained in:
@ -239,7 +239,7 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
|
||||
req.Success += res =>
|
||||
{
|
||||
Model.Beatmap = res;
|
||||
Model.Beatmap = new TournamentBeatmap(res);
|
||||
updatePanel();
|
||||
};
|
||||
|
||||
|
@ -241,7 +241,7 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
|
||||
req.Success += res =>
|
||||
{
|
||||
Model.Beatmap = res;
|
||||
Model.Beatmap = new TournamentBeatmap(res);
|
||||
updatePanel();
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user