From 084a1c72be8e65566e6a3d7a402ec48111d2b375 Mon Sep 17 00:00:00 2001 From: valoeghese Date: Sat, 29 Feb 2020 23:23:21 +1300 Subject: [PATCH] stretch terrain a bit more --- .../halotroop/litecraft/world/gen/EarthChunkGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/halotroop/litecraft/world/gen/EarthChunkGenerator.java b/src/main/java/com/github/halotroop/litecraft/world/gen/EarthChunkGenerator.java index d398d8f..602273e 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/gen/EarthChunkGenerator.java +++ b/src/main/java/com/github/halotroop/litecraft/world/gen/EarthChunkGenerator.java @@ -11,7 +11,7 @@ public class EarthChunkGenerator implements ChunkGenerator, WorldGenConstants public EarthChunkGenerator(long seed, int dimension) { Random rand = new Random(seed); - this.noise = new OctaveSimplexNoise(rand, 3, 250.0, 35.0, 10.0); + this.noise = new OctaveSimplexNoise(rand, 3, 250.0, 50.0, 18.0); this.stoneNoise = new OctaveSimplexNoise(rand, 1); this.dimension = dimension; }