mirror of
https://github.com/osukey/osukey.git
synced 2025-06-05 12:57:39 +09:00
Round when totalling up team scores instead of truncating
Matches score handling in `ScoreManager`.
This commit is contained in:
parent
0642a337df
commit
00317c0e30
@ -184,7 +184,7 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (TeamScores.TryGetValue(u.Team.Value, out var team))
|
if (TeamScores.TryGetValue(u.Team.Value, out var team))
|
||||||
team.Value += (int)u.Score.Value;
|
team.Value += (int)Math.Round(u.Score.Value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user