1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 03:02:54 +08:00

Fix osu!mania failing due to 0 hp.

This commit is contained in:
smoogipooo 2017-05-22 15:28:51 +09:00
parent 3dfe88c068
commit dcf3148d23

View File

@ -22,5 +22,12 @@ namespace osu.Game.Rulesets.Mania.Scoring
protected override void OnNewJudgement(ManiaJudgement judgement) protected override void OnNewJudgement(ManiaJudgement judgement)
{ {
} }
protected override void Reset()
{
base.Reset();
Health.Value = 1;
}
} }
} }