mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 21:10:46 +08:00
Fix rewinding causing incorrectly stronged non-strong hits
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user