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
Minecraft: 1.20.1 Forge: 47.3.0 Rhino: 2001.2.2-build.18
Updated Rhino to 2001.2.2-build.18 and it gave a syntax error for this loop:
for ( let fixPointer = pointer + 1, i = 1; fixPointer < k; fixPointer++, i++ ) {
startup.log
[21:26:28] [ERROR] ! fixPointer < k#144: missing ; after for-loop initializer [21:26:28] [ERROR] ! …rhino.EvaluatorException: missing ; after for-loop initializer (startup_scripts:util/math.js#144) [21:26:28] [ERROR] ! at …rhino.DefaultErrorReporter.runtimeError(DefaultErrorReporter.java:67) [21:26:28] [ERROR] ! at …rhino.DefaultErrorReporter.error(DefaultErrorReporter.java:58)
Seems like it doesn't like having multiple variable declarations in the for loop initializer.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Minecraft: 1.20.1
Forge: 47.3.0
Rhino: 2001.2.2-build.18
Updated Rhino to 2001.2.2-build.18 and it gave a syntax error for this loop:
startup.log
Seems like it doesn't like having multiple variable declarations in the for loop initializer.
The text was updated successfully, but these errors were encountered: