Fix imported replays having excess statistics

This commit is contained in:
Dean Herbert
2019-01-03 13:57:56 +09:00
parent 975fc47a2b
commit aec3753863
6 changed files with 25 additions and 17 deletions

View File

@ -43,6 +43,6 @@ namespace osu.Game.Rulesets.Catch.Scoring
Health.Value += Math.Max(result.Judgement.HealthIncreaseFor(result) - hpDrainRate, 0) * harshness;
}
protected override HitWindows CreateHitWindows() => new CatchHitWindows();
public override HitWindows CreateHitWindows() => new CatchHitWindows();
}
}