9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-30 04:29:05 +00:00

Rename to jigsawStructures

This commit is contained in:
Daniel Mills
2021-01-12 05:57:42 -05:00
parent 1493beb79b
commit 93508d7514
4 changed files with 3 additions and 21 deletions

View File

@@ -336,7 +336,7 @@ public interface EngineParallaxManager extends DataProvider, IObjectPlacer {
default KList<Runnable> generateParallaxJigsaw(RNG rng, int x, int z, IrisBiome biome) {
KList<Runnable> placeAfter = new KList<>();
for (IrisJigsawStructurePlacement i : biome.getJigsaw())
for (IrisJigsawStructurePlacement i : biome.getJigsawStructures())
{
if(rng.nextInt(i.getRarity()) == 0)
{
@@ -526,7 +526,7 @@ public interface EngineParallaxManager extends DataProvider, IObjectPlacer {
objects.addAll(j.getPlace());
}
for(IrisJigsawStructurePlacement j : i.getJigsaw())
for(IrisJigsawStructurePlacement j : i.getJigsawStructures())
{
jig = Math.max(jig, getData().getJigsawStructureLoader().load(j.getStructure()).getMaxDimension());
Iris.info("Jig -> " + jig);