On a fresh device, localStorage["ordinalMarkupSave"] returns undefined, and JSON.parse(undefined) throws the given Exception. Because this exception is thrown, the entire game is broken.
I was able to fix this for myself by running the command localStorage["ordinalMarkupSave"] = "{}" and then reloading, but that's unideal for new players.
In case it's helpful, this was done in Chrome 87.0.4280.66 on Windows.
I tried to start this game today, and was confused that nothing was working until I noticed a javascript error:
I looked into it and noticed that this line is the issue:
On a fresh device,
localStorage["ordinalMarkupSave"]
returns undefined, andJSON.parse(undefined)
throws the given Exception. Because this exception is thrown, the entire game is broken.I was able to fix this for myself by running the command
localStorage["ordinalMarkupSave"] = "{}"
and then reloading, but that's unideal for new players.In case it's helpful, this was done in Chrome 87.0.4280.66 on Windows.