names - remove 3 consonants rule

This commit is contained in:
Azgaar 2021-08-23 18:21:53 +03:00
parent f5cbb05f71
commit ad1a8cf17e
2 changed files with 1 additions and 3 deletions

View file

@ -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