Prevent non-combo affecting judgements from triggering sudden death (#5095)

Prevent non-combo affecting judgements from triggering sudden death
This commit is contained in:
Dean Herbert
2019-06-21 22:24:00 +09:00
committed by GitHub
5 changed files with 77 additions and 7 deletions

View File

@ -43,7 +43,7 @@ namespace osu.Game.Tests.Visual.Gameplay
protected override void LoadComplete()
{
base.LoadComplete();
ScoreProcessor.FailConditions += _ => true;
ScoreProcessor.FailConditions += (_, __) => true;
}
}
}