Value adjustements.
This commit is contained in:
parent
483b8b2ecb
commit
832603cdd7
@ -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) {
|
||||
|
@ -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) {
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user