mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 16:27:26 +08:00
Remove usage of ToBeatmapInfo
in APIScoreInfo.CreateScoreInfo
This commit is contained in:
parent
8a873bd6b1
commit
7bab487621
@ -98,7 +98,7 @@ namespace osu.Game.Online.API.Requests.Responses
|
|||||||
{
|
{
|
||||||
TotalScore = TotalScore,
|
TotalScore = TotalScore,
|
||||||
MaxCombo = MaxCombo,
|
MaxCombo = MaxCombo,
|
||||||
BeatmapInfo = Beatmap?.ToBeatmapInfo(rulesets),
|
BeatmapInfo = beatmap,
|
||||||
User = User,
|
User = User,
|
||||||
Accuracy = Accuracy,
|
Accuracy = Accuracy,
|
||||||
OnlineScoreID = OnlineID,
|
OnlineScoreID = OnlineID,
|
||||||
@ -111,9 +111,6 @@ namespace osu.Game.Online.API.Requests.Responses
|
|||||||
Mods = modInstances,
|
Mods = modInstances,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (beatmap != null)
|
|
||||||
scoreInfo.BeatmapInfo = beatmap;
|
|
||||||
|
|
||||||
if (Statistics != null)
|
if (Statistics != null)
|
||||||
{
|
{
|
||||||
foreach (var kvp in Statistics)
|
foreach (var kvp in Statistics)
|
||||||
|
Loading…
Reference in New Issue
Block a user