mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-22 03:51:23 +01:00
refactor: cleanup
This commit is contained in:
parent
64ce8cc6e4
commit
2a97c95a7f
1 changed files with 2 additions and 2 deletions
|
|
@ -1089,8 +1089,8 @@ function editProvinces() {
|
||||||
data += el.dataset.capital + ",";
|
data += el.dataset.capital + ",";
|
||||||
data += el.dataset.area + ",";
|
data += el.dataset.area + ",";
|
||||||
data += el.dataset.population + ",";
|
data += el.dataset.population + ",";
|
||||||
data += `${Math.round(provincePack.rural * populationRate)},`;
|
data += Math.round(provincePack.rural * populationRate) + ",";
|
||||||
data += `${Math.round(provincePack.urban * populationRate * urbanization)},`;
|
data += Math.round(provincePack.urban * populationRate * urbanization) + ",";
|
||||||
data += el.dataset.burgs + "\n";
|
data += el.dataset.burgs + "\n";
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue