mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 09:41:24 +01:00
Merge pull request #467 from dmecke/square-brackets-json-export
added missing square brackets in json export
This commit is contained in:
commit
d16989da28
1 changed files with 1 additions and 1 deletions
|
|
@ -352,7 +352,7 @@ function saveGeoJSON_Cells() {
|
|||
data += " \"province\": \""+cells.province[i]+"\",\n";
|
||||
data += " \"culture\": \""+cells.culture[i]+"\",\n";
|
||||
data += " \"religion\": \""+cells.religion[i]+"\",\n";
|
||||
data += " \"neighbors\": "+cells.c[i]+"\n";
|
||||
data += " \"neighbors\": ["+cells.c[i]+"]\n";
|
||||
data +=" }\n},\n";
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue