mirror of
https://github.com/ppy/osu.git
synced 2025-02-21 18:42:56 +08:00
Fix condition for dropping health on miss
This commit is contained in:
parent
e44e08201b
commit
d3ada7914c
@ -64,7 +64,7 @@ namespace osu.Game.Rulesets.Catch.Scoring
|
|||||||
|
|
||||||
if (judgement.Result == HitResult.Miss)
|
if (judgement.Result == HitResult.Miss)
|
||||||
{
|
{
|
||||||
if (judgement.AffectsCombo)
|
if (!judgement.IsBonus)
|
||||||
Health.Value -= hpDrainRate * (harshness * 2);
|
Health.Value -= hpDrainRate * (harshness * 2);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user