1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 10:23:04 +08:00

Merge pull request #1165 from peppy/move-screen-restrictions

Fix backwards conditional causing crash at song select
This commit is contained in:
Dean Herbert 2017-08-22 18:16:34 +09:00 committed by GitHub
commit 236a9ea728

View File

@ -361,7 +361,7 @@ namespace osu.Game
// we only want to apply these restrictions when we are inside a screen stack.
// the use case for not applying is in visual/unit tests.
bool applyRestrictions = currentScreen?.AllowBeatmapRulesetChange ?? false;
bool applyRestrictions = !currentScreen?.AllowBeatmapRulesetChange ?? false;
Ruleset.Disabled = applyRestrictions;
Beatmap.Disabled = applyRestrictions;