Update LevelGen.java

master
PF94 2020-11-22 16:01:53 -05:00
parent 9861ff5ab1
commit 6f261f778d
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,8 @@ public class LevelGen
final int w = this.width;
final int h = this.height;
final int d = this.depth;
final int[] heightmap1 = new NoiseMap(0).read(w, h);
final int[] heightmap2 = new NoiseMap(0).read(w, h);
for (int x = 0; x < w; ++x) {
for (int y = 0; y < d; ++y) {
for (int z = 0; z < h; ++z) {