Value adjustements.

This commit is contained in:
Harrison Deng 2020-05-04 16:01:45 -05:00
parent 483b8b2ecb
commit 832603cdd7
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ public class BiomeMap {
private final HashMap<Float, ArrayList<Biome>> temperaturePartitionedOceanBiomes = new HashMap<>();
public BiomeMap(Random random) {
this(random, 0.08d);
this(random, 0.05d);
}
public BiomeMap(Random random, double scale) {

View File

@ -17,7 +17,7 @@ public class TemperatureMap {
public TemperatureMap(Random random) {
temperatureCache = new Cache<>(1024);
noiseGenerator = new SimplexOctaveGenerator(random, 2);
noiseGenerator.setScale(0.005D);
noiseGenerator.setScale(0.003D);
}
public float getTemperature(int worldX, int worldZ) {

View File

@ -152,7 +152,7 @@ public class IslandWorldChunkGenerator extends ChunkGenerator implements Listene
@Override
public boolean canSpawn(World world, int x, int z) {
return super.canSpawn(world, x, z);
return islandMap.isLand(x, z);
}
@Override