1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00

Fix missing base call that may result in invalid ScoreProcessor state.

This commit is contained in:
smoogipooo 2017-03-29 18:21:45 +09:00
parent e8efdcfe0f
commit bae0ac4901

View File

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