1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:52:55 +08:00

Fix ordering of teams to match colours

This commit is contained in:
Dean Herbert 2021-08-09 19:48:53 +09:00
parent 490f9e1848
commit 58714dbe71

View File

@ -26,7 +26,7 @@ namespace osu.Game.Screens.Play.HUD
{
protected readonly Dictionary<int, TrackedUserData> UserScores = new Dictionary<int, TrackedUserData>();
public readonly Dictionary<int, BindableInt> TeamScores = new Dictionary<int, BindableInt>();
public readonly SortedDictionary<int, BindableInt> TeamScores = new SortedDictionary<int, BindableInt>();
[Resolved]
private OsuColour colours { get; set; }