Fix mantle df

This commit is contained in:
Daniel Mills
2021-08-08 08:00:49 -04:00
parent 7f2d781241
commit 7e2260578e
@@ -32,6 +32,6 @@ public class IrisEngineMantle implements EngineMantle {
public IrisEngineMantle(Engine engine) { public IrisEngineMantle(Engine engine) {
this.engine = engine; this.engine = engine;
this.mantle = new Mantle(new File(engine.getWorld().worldFolder(), "mantle/" + engine.getIndex()), engine.getTarget().getHeight()); this.mantle = new Mantle(new File(engine.getWorld().worldFolder(), "mantle"), engine.getTarget().getHeight());
} }
} }