completely redo biome loading

This commit is contained in:
dfsek
2021-02-14 14:19:45 -07:00
parent 36db83b253
commit b6e414f944
21 changed files with 261 additions and 330 deletions

View File

@@ -34,7 +34,7 @@ public class TerraBiomeSource extends BiomeSource {
super(biomes.stream().collect(Collectors.toList()));
this.biomeRegistry = biomes;
this.seed = seed;
this.grid = pack.getTemplate().getProviderBuilder().build(seed);
this.grid = pack.getBiomeProviderBuilder().build(seed);
this.pack = pack;
}