9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 02:59:06 +00:00

Dust of Revealing Pt.2, also Whoops.

This commit is contained in:
Vatuu
2022-05-16 19:40:39 +02:00
parent 923860a90b
commit a63a6f751f
5 changed files with 6 additions and 8 deletions

View File

@@ -60,7 +60,7 @@ public class IrisEngineMantle implements EngineMantle {
public IrisEngineMantle(Engine engine) {
this.engine = engine;
this.mantle = new Mantle(new File(engine.getWorld().worldFolder(), "mantle"), engine.getTarget().getHeight(), engine.getTarget().getMinY());
this.mantle = new Mantle(new File(engine.getWorld().worldFolder(), "mantle"), engine.getTarget().getHeight());
radius = radCache.aquire(this::computeParallaxSize);
components = new KList<>();
registerComponent(new MantleCarvingComponent(this));

View File

@@ -42,8 +42,6 @@ public class EngineTarget {
return world.maxHeight() - world.minHeight();
}
public int getMinY() { return world.minHeight(); }
public void close() {
}