Merge branch 'master' into schedule-display-without-current

This commit is contained in:
Bartłomiej Dach
2021-07-16 22:45:51 +02:00
committed by GitHub
8 changed files with 132 additions and 18 deletions

View File

@ -303,6 +303,15 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
Match.LosersProgression.Value = null;
ladderInfo.Matches.Remove(Match);
foreach (var m in ladderInfo.Matches)
{
if (m.Progression.Value == Match)
m.Progression.Value = null;
if (m.LosersProgression.Value == Match)
m.LosersProgression.Value = null;
}
}
}
}