Merge pull request #1156 from ActualMandM/kade-freeplay

Revert "fix freeplay locking thing"
This commit is contained in:
Kade M 2021-07-05 18:19:18 -07:00 committed by GitHub
commit 9abf64fb71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -318,10 +318,6 @@ class FreeplayState extends MusicBeatState
function changeDiff(change:Int = 0)
{
if (songs[curSelected += change] == null)
return;
curDifficulty += change;
if (curDifficulty < 0)
@ -353,9 +349,6 @@ class FreeplayState extends MusicBeatState
// NGio.logEvent('Fresh');
FlxG.sound.play(Paths.sound('scrollMenu'), 0.4);
if (songs[curSelected += change] == null)
return;
curSelected += change;
if (curSelected < 0)