Several changes to chunk generation operation.

Multiple values adjusted.

Pipeline changed.

Changed server start script to not wait for debugger.
This commit is contained in:
2020-05-02 19:22:17 -05:00
parent d8d0744350
commit 79edd9bf29
9 changed files with 99 additions and 70 deletions

View File

@@ -58,7 +58,7 @@ public class UniBiomeIslandGeneratorTest {
TemperatureMapGenerator temperatureMapGenerator = new TemperatureMapGenerator(SEED);
BiomeGenerator biomeGenerator = new UniBiomeIslandGenerator();
Biome[][] biomes = new Biome[Utilities.CHUNK_SIZE][Utilities.CHUNK_SIZE];
Biome[][][] biomes = new Biome[Utilities.CHUNK_SIZE][Utilities.CHUNK_SIZE][4];
for (int localX = 0; localX < Utilities.CHUNK_SIZE; localX++) {
for (int localZ = 0; localZ < Utilities.CHUNK_SIZE; localZ++) {
if (biomes[localX][localZ] == null) {