We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Yes
Add multiple mods to the mod directory at once while celeste is running ,mainMenu cant work.
Menu can work and only one option is selected
ubuntu 20.04
3282
No response
The text was updated successfully, but these errors were encountered:
i fix it by mod code
On.Celeste.OuiMainMenu.RebuildMainAndTitle += menuPatch; private static void menuPatch(On.Celeste.OuiMainMenu.orig_RebuildMainAndTitle orig, OuiMainMenu self){ string selected = null; foreach (MenuButton button in self.Buttons) { if (button.Selected && !(button is MainMenuClimb)) selected = (button as MainMenuSmallButton)?.GetLabelName();; button.SetSelected(false); } orig(self); if (selected == null) { foreach (MenuButton button in self.Buttons) { button.SetSelected(button is MainMenuClimb); } } else { foreach (MenuButton button in self.Buttons) { button.SetSelected((button as MainMenuSmallButton)?.GetLabelName() == selected); } } }
Sorry, something went wrong.
No branches or pull requests
My mods and Everest install are up to date
Yes
I have recreated the bug with only Everest OR a minimum number of mods enabled
Yes
Describe the bug
Add multiple mods to the mod directory at once while celeste is running ,mainMenu cant work.
Steps to reproduce
Expected behavior
Menu can work and only one option is selected
Operating System
ubuntu 20.04
Everest Version
3282
Mods required to reproduce
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: