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

Merge pull request #572 from smoogipooo/general-fixes

Fix missing base call that may result in invalid ScoreProcessor state.
This commit is contained in:
Dean Herbert 2017-03-30 14:07:50 +09:00 committed by GitHub
commit ddc6d45985

View File

@ -152,6 +152,8 @@ namespace osu.Game.Modes.Scoring
protected override void Reset()
{
base.Reset();
Judgements.Clear();
}