diff --git a/modules/cultures-generator.js b/modules/cultures-generator.js index 9472fa65..1ced583f 100644 --- a/modules/cultures-generator.js +++ b/modules/cultures-generator.js @@ -139,9 +139,9 @@ {name:"Carnatic", base: 26, odd: .1}, {name:"Inqan", base: 27, odd: .1}, {name:"Kiswaili", base: 28, odd: .1}, - {name:"Vietic", base: 29, odd: .1}//, - //{name:"Guantzu", base:30, odd: 1}, - //{name:"Ulus", base:31, odd: .1} + {name:"Vietic", base: 29, odd: .1}, + {name:"Guantzu", base:30, odd: 1}, + {name:"Ulus", base:31, odd: .1} ]; } diff --git a/modules/save-and-load.js b/modules/save-and-load.js index 6a3a1233..21d71337 100644 --- a/modules/save-and-load.js +++ b/modules/save-and-load.js @@ -262,7 +262,7 @@ function parseLoadedData(data) { return; } biomesData.color = biomes[0].split(","); - biomesData.habitability = biomes[1].split(","); + biomesData.habitability = biomes[1].split(",").map(h => +h); biomesData.name = name; }()