mirror of
https://github.com/ppy/osu.git
synced 2026-05-30 12:10:25 +08:00
Fix CatcherAnimationState is Fail if missing banana shower
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user