From ef0db547b72c3ba25290a41350c335e5d8dc80d0 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Mon, 6 Dec 2021 21:33:55 -0500 Subject: [PATCH] mid song difficulty selector fix --- source/PauseSubState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/PauseSubState.hx b/source/PauseSubState.hx index 8a1f926a4..bda8be818 100644 --- a/source/PauseSubState.hx +++ b/source/PauseSubState.hx @@ -156,8 +156,8 @@ class PauseSubState extends MusicBeatSubstate case "Resume": close(); case "EASY" | 'NORMAL' | "HARD": - PlayState.SONG = SongLoad.loadFromJson(Highscore.formatSong(PlayState.SONG.song.toLowerCase(), curSelected), - PlayState.SONG.song.toLowerCase()); + PlayState.SONG = SongLoad.loadFromJson(PlayState.SONG.song.toLowerCase(), PlayState.SONG.song.toLowerCase()); + SongLoad.curDiff = daSelected.toLowerCase(); PlayState.storyDifficulty = curSelected;