Skip to content

Commit

Permalink
HUGE UNNOTICED BUG OMG??😭😭
Browse files Browse the repository at this point in the history
if u wanted to change what the player selected in the main menu, well YOU COULDNT
i just fixed this; nobody ever noticed??
  • Loading branch information
NexIsDumb committed Oct 30, 2024
1 parent cb54e5e commit 2ee70ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/funkin/menus/MainMenuState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class MainMenuState extends MusicBeatState

var event = event("onSelectItem", EventManager.get(NameEvent).recycle(daChoice));
if (event.cancelled) return;
switch (daChoice)
switch (event.name)
{
case 'story mode': FlxG.switchState(new StoryMenuState());
case 'freeplay': FlxG.switchState(new FreeplayState());
Expand Down

2 comments on commit 2ee70ca

@usb-port-2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i did but my workaround was just recoding the entire thing

@NexIsDumb
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i did but my workaround was just recoding the entire thing

why didnt you just tell me😭

Please sign in to comment.