9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2026-01-03 22:26:25 +00:00

Height warnings

This commit is contained in:
DanLT
2021-06-17 19:35:07 -08:00
parent 7efdcdc592
commit 449c2322b8
20 changed files with 40 additions and 26 deletions

View File

@@ -79,6 +79,7 @@ public class EngineCompositeGenerator extends ChunkGenerator implements IrisAcce
public void prepareSpawnAsync(long seed, String worldName, World.Environment env, int radius, Consumer<Double> progress, Runnable onComplete)
{
// TODO: WARNING HEIGHT
prepareSpawnAsync(256, seed, worldName, env, radius, progress, onComplete);
}

View File

@@ -34,6 +34,7 @@ public interface EngineCompound extends Listener, Hotloadable, DataProvider
public default int getHeight()
{
// TODO: WARNING HEIGHT
return 256;
}

View File

@@ -26,6 +26,7 @@ public class EngineTarget
this.height = height;
this.dimension = dimension;
this.data = data;
// TODO: WARNING HEIGHT
this.parallaxWorld = new ParallaxWorld(256, new File(world.getWorldFolder(), "iris/" + dimension.getLoadKey() + "/parallax"));
this.inverted = inverted;
this.burster = new MultiBurst(threads);

View File

@@ -28,6 +28,7 @@ public class BiomeGridHunkView implements Hunk<Biome>
@Override
public int getHeight()
{
// TODO: WARNING HEIGHT
return 256;
}