Bypass fail on replays

This commit is contained in:
iiSaLMaN 2019-09-18 22:49:48 +03:00
parent ecd721e8c5
commit 775b90e066
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,9 @@ public class ReplayPlayer : Player
{
private readonly Score score;
// Block replays from failing. (see https://github.com/ppy/osu/issues/6108)
protected override bool BypassFail => true;
public ReplayPlayer(Score score, bool allowPause = true, bool showResults = true)
: base(allowPause, showResults)
{