mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-01-03 22:26:25 +00:00
Height warnings
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -34,6 +34,7 @@ public interface EngineCompound extends Listener, Hotloadable, DataProvider
|
||||
|
||||
public default int getHeight()
|
||||
{
|
||||
// TODO: WARNING HEIGHT
|
||||
return 256;
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -28,6 +28,7 @@ public class BiomeGridHunkView implements Hunk<Biome>
|
||||
@Override
|
||||
public int getHeight()
|
||||
{
|
||||
// TODO: WARNING HEIGHT
|
||||
return 256;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user