- disable region queueing
- tweak default filter settings
This commit is contained in:
parent
ed80aa3773
commit
f5db6995f2
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user