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
Game is crashing with this error:
Error: Scene_Preloader.js:49 Uncaught ReferenceError: textStrings is not defined
This issue is happening because textStrings doesn't even exist in code base and the game is trying to access it since it has multiple languages.
textStrings
This issue should be fixed in this Pull Request.
Until the Pull Request can be merged you can add this at the bottom of the folder: textStrings.js
textStrings.js
const textStrings = (() => { switch (navigator.language) { case "en-US": return textStrings_EN; case "da": return textStrings_DA; case "fa": return textStrings_FA; case "pt-pt": return textStrings_PT; case "pt-BR": return textStrings_PT_BR; case "es": return textStrings_ES; default: return textStrings_EN; } } )();
The text was updated successfully, but these errors were encountered:
I have the same issue all the way in 2023
Sorry, something went wrong.
No branches or pull requests
Game is crashing with this error:
This issue is happening because
textStrings
doesn't even exist in code base and the game is trying to access it since it has multiple languages.This issue should be fixed in this Pull Request.
Until the Pull Request can be merged you can add this at the bottom of the folder:
textStrings.js
The text was updated successfully, but these errors were encountered: