Interesting. This is a proper JSON file, but for some reason the load routine faults when reaching the "nursery" entry in "location storage"
Somehow the Nursery entry has a field
"classInstnace": "CategorizedItemStorage",
It took a really long time to figure out that it says classInst N A C E not classInst A N C E
Fixing that typo allows the file to load.
If you've modified the file that's probably the cause, if not, it seems like a pretty weird bug that the devs may want to...
probably make a check for in the JS version, since continually rereleasing the flash version when they're trying to move away from it seems like a step backward.
The full JSON path key, for dev reference, is
"locationStorage": {
"locations": {
"ShipStorage": {
"classInstance": "CategorizedItemStorage",
"neverSerialize": false,
"storage": [{...}],
"locationKey": "ShipStorage"
},
"nursery": {
"neverSerialize": false,
"storage": [],
"classInstnace": "CategorizedItemStorage",
"locationKey": "nursery"
}
},