We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96ee6c commit 3140ee8Copy full SHA for 3140ee8
source/funkin/menus/FreeplayState.hx
@@ -124,13 +124,9 @@ class FreeplayState extends MusicBeatState
124
}
125
126
updateCurDifficulties();
127
-
128
- if (curSong != null) {
129
- for(k=>diff in curDifficulties) {
130
- if (diff == Options.freeplayLastDifficulty) {
131
- curDifficulty = k;
132
- }
133
+ for(i=>diff in curDifficulties) {
+ if (curDiffMetaKeys[i] == Options.freeplayLastVariation && diff == Options.freeplayLastDifficulty)
+ curDifficulty = i;
134
135
136
updateCurSong();
0 commit comments