You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe it is a good source to check diff at index.js...?
The issue seems harmless, nothing else on the player changes.
But it's very annoying to write code on the console, while it's throwing erros every time you type something.
Thanks in advance!
OK, update:
The error does not happen on the beta builds of chrome, it is a browser related error 😑
The text was updated successfully, but these errors were encountered:
Name of the game:
Every Game.
Player platform:
WebPlayer(emscripten)
Attach files (as a .zip archive or link them)
Most recent builds of the WebPlayer
testing players from https://easyrpg.org/play/pr2779/
to https://easyrpg.org/play/master/
Describe the issue in detail and how to reproduce it:
Usually I use the Browser's Console to implement and debug stuff on the webplayer.
After updating it to a recent version, every time I type something on the console, it points to an generic error:

Looks like the errors are related to the list of variables that the console input generates...?
If I type ";" or "i" the error does not happens.
When typing "i", if I move down to "If", it throws an error...
It seems like it happens whenever that list can't find a variable:
"i" does not produce an error, because the list points to a var named "i" on the page.
"M" produces an error, because the list points to "Map" which is a generic function.
"Mo" does not produces an error, it points to the var "Module".
The error happens before the wasm is loaded. Would it be exclusive to the index.js file?
maybe the console is walking through the entire index.js and hitting something problematic on that ?
Right now, i'm using this dirty fix:
If the error is an order to check the console, it wont appear on the console, just on the status div.
Maybe adding a "dismiss" button on the status texts that appears on top could also help on this dirty fix.
The root of the problem may be closer to this function, tho:
I don't know what happened to make the window detect changes on the console input as errors...
Sam, from discord, is facing the same issues since he updated his repo:
ynoproject/ynoengine@ae7a33d
Maybe it is a good source to check diff at index.js...?
The issue seems harmless, nothing else on the player changes.
But it's very annoying to write code on the console, while it's throwing erros every time you type something.
Thanks in advance!
OK, update:
The error does not happen on the beta builds of chrome, it is a browser related error 😑
The text was updated successfully, but these errors were encountered: