[P3 Bug] Fix login screen not playing menu_open SFX properly

It did not properly specify that the SFX file was in the ui folder.
This commit is contained in:
Madmadness65 2025-09-16 02:45:30 -05:00
parent 0c921cdb4a
commit e25db16326

View File

@ -33,7 +33,7 @@ export class LoginPhase extends Phase {
globalScene.ui.showText(i18next.t("menu:logInOrCreateAccount"));
}
globalScene.playSound("menu_open");
globalScene.playSound("ui/menu_open");
const loadData = () => {
updateUserInfo().then(success => {
@ -53,7 +53,7 @@ export class LoginPhase extends Phase {
loadData();
},
() => {
globalScene.playSound("menu_open");
globalScene.playSound("ui/menu_open");
globalScene.ui.setMode(UiMode.REGISTRATION_FORM, {
buttonActions: [
() => {