1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 13:22:55 +08:00

Fix typo causing nested windows to be ignored

This commit is contained in:
Derrick Timmermans 2021-07-04 21:50:58 +02:00
parent 0fb16cb55f
commit 32b068fbdc
No known key found for this signature in database
GPG Key ID: 8681B60806EF4A17

View File

@ -496,7 +496,7 @@ namespace osu.Game.Rulesets.UI
foreach (var n in h.NestedHitObjects) foreach (var n in h.NestedHitObjects)
{ {
if (h.HitWindows.WindowFor(HitResult.Miss) > 0) if (n.HitWindows.WindowFor(HitResult.Miss) > 0)
return n.HitWindows; return n.HitWindows;
} }
} }