If one press the "Change Mascot" button it won't change again if you reload the page, only if you click in that button again, there a way to make it random again?
Posted under General
If one press the "Change Mascot" button it won't change again if you reload the page, only if you click in that button again, there a way to make it random again?
Interesting. I'm not sure if there is an intended way to clear that, but here's one way to do it.
1. Open the developer console. In Chrome and Firefox, you can do that by pressing F12, and going to the "Console" tab.
2. Paste the following code in there: localStorage.removeItem("mascot"); and press Enter.
3. Reload the page.
Let me know if you run into any issues.
it worked! thanks