Use FastRandom in populators, fix issues with flora/tree pop

This commit is contained in:
dfsek
2020-11-22 20:20:26 -07:00
parent 2b5fd16e4a
commit 7509c03cbd
9 changed files with 28 additions and 17 deletions

View File

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