mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-21 19:41:23 +01:00
bugfix in burgs export
This commit is contained in:
parent
096160a80f
commit
7d9c435e97
1 changed files with 1 additions and 1 deletions
|
|
@ -259,7 +259,7 @@ function editBurgs() {
|
||||||
data += b.name + ",";
|
data += b.name + ",";
|
||||||
const province = pack.cells.province[b.cell];
|
const province = pack.cells.province[b.cell];
|
||||||
data += province ? pack.provinces[province].fullName + "," : ",";
|
data += province ? pack.provinces[province].fullName + "," : ",";
|
||||||
data += b.state ? pack.states[b.state].fullName : pack.states[b.state].name + ",";
|
data += b.state ? pack.states[b.state].fullName +"," : pack.states[b.state].name + ",";
|
||||||
data += pack.cultures[b.culture].name + ",";
|
data += pack.cultures[b.culture].name + ",";
|
||||||
data += pack.religions[pack.cells.religion[b.cell]].name + ",";
|
data += pack.religions[pack.cells.religion[b.cell]].name + ",";
|
||||||
data += rn(b.population * populationRate.value * urbanization.value) + ",";
|
data += rn(b.population * populationRate.value * urbanization.value) + ",";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue