mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-18 06:40:55 +00:00
fix order of population in FabricChunkGeneratorWrapper
This commit is contained in:
+1
-1
@@ -104,9 +104,9 @@ public class FabricChunkGeneratorWrapper extends ChunkGenerator implements Handl
|
|||||||
FastRandom pop = new FastRandom(MathUtil.getCarverChunkSeed(region.getCenterChunkX(), region.getCenterChunkZ(), seed));
|
FastRandom pop = new FastRandom(MathUtil.getCarverChunkSeed(region.getCenterChunkX(), region.getCenterChunkZ(), seed));
|
||||||
FabricWorldChunkRegion chunkRegion = new FabricWorldChunkRegion(region, this);
|
FabricWorldChunkRegion chunkRegion = new FabricWorldChunkRegion(region, this);
|
||||||
FabricChunkWorldAccess regionChunk = new FabricChunkWorldAccess(region, region.getCenterChunkX(), region.getCenterChunkZ());
|
FabricChunkWorldAccess regionChunk = new FabricChunkWorldAccess(region, region.getCenterChunkX(), region.getCenterChunkZ());
|
||||||
super.generateFeatures(region, accessor);
|
|
||||||
cavePopulator.populate(chunkRegion, pop, regionChunk);
|
cavePopulator.populate(chunkRegion, pop, regionChunk);
|
||||||
orePopulator.populate(chunkRegion, pop, regionChunk);
|
orePopulator.populate(chunkRegion, pop, regionChunk);
|
||||||
|
super.generateFeatures(region, accessor);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user