1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Fix crash

This commit is contained in:
Dean Herbert 2018-09-25 13:39:27 +09:00
parent c210ea7c39
commit 2abe96fb9c

View File

@ -142,7 +142,7 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
}
else
{
if (pairing.Progression.Value.Completed)
if (pairing.Progression.Value?.Completed.Value != false)
// don't allow changing scores if the match has a progression. can cause large data loss
return false;