Lowered amount of octaves.

This commit is contained in:
Harrison Deng 2020-04-24 15:10:17 -05:00
parent 2e67cb90ca
commit 6c8389d60e

View File

@ -10,7 +10,7 @@ public class BedrockGenerator {
private final int minBedrockHeight;
public BedrockGenerator(Random random, int maxBedrockHeight, int minBedrockHeight) {
noiseGenerator = new SimplexOctaveGenerator(random, 8);
noiseGenerator = new SimplexOctaveGenerator(random, 1);
noiseGenerator.setScale(0.1D);
this.maxBedrockHeight = maxBedrockHeight;
this.minBedrockHeight = minBedrockHeight;