1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-20 05:36:05 +08:00

Fix condition for dropping health on miss

This commit is contained in:
clayton 2018-06-11 13:29:36 -07:00
parent e44e08201b
commit d3ada7914c
No known key found for this signature in database
GPG Key ID: 27E0498D54E725EB

View File

@ -64,7 +64,7 @@ namespace osu.Game.Rulesets.Catch.Scoring
if (judgement.Result == HitResult.Miss)
{
if (judgement.AffectsCombo)
if (!judgement.IsBonus)
Health.Value -= hpDrainRate * (harshness * 2);
return;
}