Config errors now failover to Vanilla, refactored configs, begin work on wiki.

This commit is contained in:
dfsek
2020-10-11 02:42:25 -07:00
parent c91d2a46ed
commit 029afe6e12
6 changed files with 53 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ public class ErosionNoise {
public ErosionNoise(float freq1, double thresh, long seed) {
FastNoise main = new FastNoise((int) (seed+1));
main.setNoiseType(FastNoise.NoiseType.SimplexFractal);
main.setFractalOctaves(2);
main.setFractalOctaves(3);
main.setFrequency(freq1);
this.thresh = thresh;
this.noise = main;