Fix completely incorrect judgement specification

This commit is contained in:
Dean Herbert
2022-02-22 14:37:52 +09:00
parent 91acc9eec6
commit 9e279c3ebc

View File

@ -100,8 +100,8 @@ namespace osu.Game.Rulesets.Osu.Tests.Mods
return false;
return
results.Any(r => r.Type == HitResult.SmallTickHit)
&& !results.Any(r => r.Type == HitResult.LargeTickHit);
results.Any(r => r.Type == HitResult.SmallBonus)
&& !results.Any(r => r.Type == HitResult.LargeBonus);
}
});
}