mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 00:23:01 +08:00
Fix CatcherAnimationState is Fail if missing banana shower
This commit is contained in:
parent
cb0e698e04
commit
09b9983286
@ -345,7 +345,10 @@ namespace osu.Game.Rulesets.Catch.UI
|
||||
if (validCatch)
|
||||
updateState(fruit.Kiai ? CatcherAnimationState.Kiai : CatcherAnimationState.Idle);
|
||||
else
|
||||
updateState(CatcherAnimationState.Fail);
|
||||
{
|
||||
if (!(fruit is Banana))
|
||||
updateState(CatcherAnimationState.Fail);
|
||||
}
|
||||
|
||||
return validCatch;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user