1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 22:04:47 +08:00

Fix catch awarding too much hp

This commit is contained in:
smoogipoo
2019-04-22 18:02:57 +09:00
Unverified
parent 4edb17a88a
commit 910b9df2d5
2 changed files with 2 additions and 2 deletions
@@ -28,7 +28,7 @@ namespace osu.Game.Rulesets.Catch.Judgements
default:
return 0;
case HitResult.Perfect:
return 0.08;
return 0.008;
}
}
@@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Catch.Judgements
default:
return base.HealthIncreaseFor(result);
case HitResult.Perfect:
return 0.07;
return 0.007;
}
}
}