- disable region queueing

- tweak default filter settings
This commit is contained in:
dags- 2020-03-15 00:04:12 +00:00
parent ed80aa3773
commit f5db6995f2
3 changed files with 3 additions and 4 deletions

View File

@ -43,7 +43,6 @@ public class RegionCache implements RegionExtent {
public RegionCache(boolean queueNeighbours, RegionGenerator renderer) {
this.renderer = renderer;
this.queuing = queueNeighbours;
this.cache = Cache.concurrent(180, 60, TimeUnit.SECONDS);
}

View File

@ -45,11 +45,11 @@ public class FilterSettings {
@Range(min = 0F, max = 1F)
@Comment("Controls how quickly material dissolves (during erosion)")
public float erosionRate = 0.45F;
public float erosionRate = 0.5F;
@Range(min = 0F, max = 1F)
@Comment("Controls how quickly material is deposited (during erosion)")
public float depositeRate = 0.35F;
public float depositeRate = 0.2F;
}
@Serializable

View File

@ -373,7 +373,7 @@ public class TerraChunkGenerator extends ObfHelperChunkGenerator<GenerationSetti
.factory(context.factory)
.size(3, 2)
.build()
.toCache();
.toCache(false);
}
public ChunkReader getChunkReader(int chunkX, int chunkZ) {