mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
Fix rewinding causing incorrectly stronged non-strong hits
This commit is contained in:
parent
755b82a308
commit
8b5d5c9ae2
@ -109,7 +109,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
if (lastAction == null)
|
||||
return false;
|
||||
|
||||
if (timeBetweenActions > DrawableHit.StrongNestedHit.SECOND_HIT_WINDOW)
|
||||
if (timeBetweenActions < 0 || timeBetweenActions > DrawableHit.StrongNestedHit.SECOND_HIT_WINDOW)
|
||||
return false;
|
||||
|
||||
switch (newAction)
|
||||
|
Loading…
Reference in New Issue
Block a user