mirror of
https://github.com/ppy/osu
synced 2025-02-17 19:07:07 +00:00
Fix banana showers causing fails when hp is at 0
This commit is contained in:
parent
66ace02e58
commit
bf5640049a
@ -32,6 +32,10 @@ namespace osu.Game.Rulesets.Catch.Scoring
|
||||
if (result.Type == HitResult.SmallTickMiss)
|
||||
return false;
|
||||
|
||||
// on stable, banana showers don't exist as concrete objects themselves, so they can't cause a fail.
|
||||
if (result.HitObject is BananaShower)
|
||||
return false;
|
||||
|
||||
return base.CheckDefaultFailCondition(result);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user