Merge pull request #7997 from smoogipoo/adjust-hp-values

Increase HP awarded for GOODs from 1.5% to 2.5%
This commit is contained in:
Dean Herbert 2020-02-26 13:15:30 +09:00 committed by GitHub
commit 2c0b8ab95f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ namespace osu.Game.Rulesets.Judgements
return -DEFAULT_MAX_HEALTH_INCREASE * 0.01;
case HitResult.Good:
return DEFAULT_MAX_HEALTH_INCREASE * 0.3;
return DEFAULT_MAX_HEALTH_INCREASE * 0.5;
case HitResult.Great:
return DEFAULT_MAX_HEALTH_INCREASE;