Updated biome ID constants

This commit is contained in:
Dylan K. Taylor
2021-07-23 22:35:09 +01:00
parent 58498c2b0b
commit 772935cd7e
3 changed files with 79 additions and 13 deletions

View File

@ -76,7 +76,7 @@ class Normal extends Generator{
}elseif($temperature < 0.85){
return BiomeIds::RIVER;
}else{
return BiomeIds::SWAMP;
return BiomeIds::SWAMPLAND;
}
}elseif($rainfall < 0.60){
if($temperature < 0.25){
@ -96,9 +96,9 @@ class Normal extends Generator{
}
}else{
if($temperature < 0.20){
return BiomeIds::MOUNTAINS;
return BiomeIds::EXTREME_HILLS;
}elseif($temperature < 0.40){
return BiomeIds::SMALL_MOUNTAINS;
return BiomeIds::EXTREME_HILLS_EDGE;
}else{
return BiomeIds::RIVER;
}