mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 01:41:22 +01:00
names - remove 3 consonants rule
This commit is contained in:
parent
f5cbb05f71
commit
ad1a8cf17e
2 changed files with 1 additions and 3 deletions
2
main.js
2
main.js
|
|
@ -1397,7 +1397,7 @@ function defineBiomes() {
|
|||
|
||||
// assign biome id to a cell
|
||||
function getBiomeId(moisture, temperature, height) {
|
||||
if (height < 20) return 0; // marine biome: liquid water cells
|
||||
if (height < 20) return 0; // marine biome: all water cells
|
||||
if (temperature < -5) return 11; // permafrost biome
|
||||
if (moisture > 40 && temperature > -2 && (height < 25 || (moisture > 24 && height > 24))) return 12; // wetland biome
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue