1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 21:02:54 +08:00

Fix not being able to decrement scores of matches with no defined progression

This commit is contained in:
Dean Herbert 2018-10-14 03:03:40 +09:00
parent e136f72c8e
commit b1862a863b

View File

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