1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Use correct HitResult in test

This commit is contained in:
Dan Balasescu 2022-07-12 18:47:43 +09:00
parent 0fe3bac173
commit 363e23c251

View File

@ -279,7 +279,7 @@ namespace osu.Game.Tests.Visual.Online
s.Statistics = new Dictionary<HitResult, int>
{
{ HitResult.Great, RNG.Next(2000) },
{ HitResult.Good, RNG.Next(2000) },
{ HitResult.Ok, RNG.Next(2000) },
{ HitResult.Meh, RNG.Next(2000) },
{ HitResult.Miss, RNG.Next(2000) }
};