Fix mtl carving streams

This commit is contained in:
cyberpwn 2021-09-12 08:24:51 -04:00
parent d46351b866
commit 04be430b8c
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ public class MantleCarvingComponent extends IrisMantleComponent {
int xxx = 8 + (x << 4); int xxx = 8 + (x << 4);
int zzz = 8 + (z << 4); int zzz = 8 + (z << 4);
IrisRegion region = getComplex().getRegionStream().get(xxx, zzz); IrisRegion region = getComplex().getRegionStream().get(xxx, zzz);
IrisBiome biome = getComplex().getTrueBiomeStreamNoFeatures().get(xxx, zzz); IrisBiome biome = getComplex().getTrueBiomeStream().get(xxx, zzz);
carve(writer, rng, x, z, region, biome); carve(writer, rng, x, z, region, biome);
} }

View File

@ -42,7 +42,7 @@ public class MantleFluidBodyComponent extends IrisMantleComponent {
int xxx = 8 + (x << 4); int xxx = 8 + (x << 4);
int zzz = 8 + (z << 4); int zzz = 8 + (z << 4);
IrisRegion region = getComplex().getRegionStream().get(xxx, zzz); IrisRegion region = getComplex().getRegionStream().get(xxx, zzz);
IrisBiome biome = getComplex().getTrueBiomeStreamNoFeatures().get(xxx, zzz); IrisBiome biome = getComplex().getTrueBiomeStream().get(xxx, zzz);
generate(writer, rng, x, z, region, biome); generate(writer, rng, x, z, region, biome);
} }