increase pipeline cache size

This commit is contained in:
dfsek 2021-12-07 21:31:36 -07:00
parent 8ca4e380fa
commit c08f779171

View File

@ -39,7 +39,7 @@ public class BiomePipelineProvider implements BiomeProvider {
this.mutator = mutator;
this.noiseAmp = noiseAmp;
holderCache = CacheBuilder.newBuilder()
.maximumSize(platform == null ? 32 : platform.getTerraConfig().getProviderCache())
.maximumSize(128)
.build(
new CacheLoader<>() {
@Override