This commit is contained in:
SoulliesOfficial
2025-08-27 21:45:18 -04:00
parent 131b182f43
commit 4031b29245
266 changed files with 26272 additions and 18257 deletions

View File

@@ -23,12 +23,14 @@ namespace Ichni.Menu
buttons[i].SetUp(difficulties[i]);
}
if (MenuManager.instance.songSelectionUIPage.currentSelectedDifficultyIndex >= difficultyCount)
SongSelectionRecord songSelectionRecord = MenuInformationRecorder.instance.GetRecordOfThisChapter();
if (songSelectionRecord.difficultyIndex >= difficultyCount)
{
MenuManager.instance.songSelectionUIPage.currentSelectedDifficultyIndex = difficultyCount - 1;
songSelectionRecord.difficultyIndex = difficultyCount - 1;
}
buttons[MenuManager.instance.songSelectionUIPage.currentSelectedDifficultyIndex].Select();
buttons[songSelectionRecord.difficultyIndex].Select();
}
}
}