mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-12 18:56:04 +00:00
Use FastRandom in populators, fix issues with flora/tree pop
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user