Fix failing at beginning of map

This commit is contained in:
Dean Herbert 2017-08-08 12:56:22 +09:00
parent ff490cf44c
commit 5704e9ee65

View File

@ -19,6 +19,14 @@ namespace osu.Game.Rulesets.Catch.Scoring
{
}
protected override void Reset()
{
base.Reset();
Health.Value = 1;
Accuracy.Value = 1;
}
protected override void OnNewJudgement(CatchJudgement judgement)
{
}