do the populator shuffle B)

This commit is contained in:
dfsek
2020-11-23 21:57:09 -07:00
parent e270969fd1
commit 8b0a7d422a
3 changed files with 8 additions and 7 deletions

View File

@@ -57,7 +57,9 @@ public class TerraChunkGenerator extends GaeaChunkGenerator {
public TerraChunkGenerator(ConfigPack c) {
super(ChunkInterpolator.InterpolationType.TRILINEAR);
this.configPack = c;
popMan.attach(new OrePopulator());
popMan.attach(new TreePopulator());
popMan.attach(new FloraPopulator());
popMan.attach(new SnowPopulator());
}
@@ -226,7 +228,7 @@ public class TerraChunkGenerator extends GaeaChunkGenerator {
@Override
public @NotNull List<BlockPopulator> getDefaultPopulators(@NotNull World world) {
return Arrays.asList(new CavePopulator(), new StructurePopulator(), new OrePopulator(), new FloraPopulator(), popMan);
return Arrays.asList(new CavePopulator(), new StructurePopulator(), popMan);
}
@Override