Add position display in contracted score panels

This commit is contained in:
smoogipoo
2020-07-28 22:08:10 +09:00
parent f1e721e396
commit b361761d86
5 changed files with 49 additions and 1 deletions

View File

@ -80,7 +80,8 @@ namespace osu.Game.Online.Multiplayer
Date = EndedAt,
Hash = string.Empty, // todo: temporary?
Rank = Rank,
Mods = Mods?.Select(m => m.ToMod(rulesetInstance)).ToArray() ?? Array.Empty<Mod>()
Mods = Mods?.Select(m => m.ToMod(rulesetInstance)).ToArray() ?? Array.Empty<Mod>(),
Position = Position,
};
return scoreInfo;