9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-25 18:19:14 +00:00
This commit is contained in:
Daniel Mills
2020-10-29 03:50:34 -04:00
parent 2c8c23522b
commit a319314d04
2 changed files with 1 additions and 7 deletions

View File

@@ -156,8 +156,6 @@ public class IrisComplex implements DataProvider
? seaBiomeStream.get(x, z) : landBiomeStream.get(x, z))
.convertAware2D(this::implode).cache2D(cacheSize);
heightStream = baseBiomeStream.convertAware2D((b, x, z) -> getHeight(b, x, z, seed))
.add(fluidHeight)
.add2D(overlayStream::get)
.roundDouble()
.cache2D(cacheSize);
slopeStream = heightStream.slope();
@@ -335,7 +333,7 @@ public class IrisComplex implements DataProvider
h += M.lerp(lo, hi, gen.getHeight(x, z, seed + 239945));
}
return h;
return h + fluidHeight + overlayStream.get(x,z);
}
private void registerGenerator(IrisGenerator cachedGenerator)