This commit is contained in:
dags- 2020-03-12 12:57:27 +00:00
parent b21dec9a9a
commit 3e2d7c54fe
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class ClimateModule {
float biomeFreq = 1F / biomeSize;
int moistureSize = moistScaler * biomeSize;
int temperatureSize = tempScaler * tempScaler;
int temperatureSize = tempScaler * biomeSize;
int moistScale = NoiseUtil.round(moistureSize * biomeFreq);
int tempScale = NoiseUtil.round(temperatureSize * biomeFreq);
int warpScale = settings.biome.biomeWarpScale;