Oops, forgot to move snow layers 1 km up

This commit is contained in:
OLEGSHA 2021-01-05 17:07:20 +03:00
parent 524e79008f
commit 7b417d612d

View File

@ -190,7 +190,7 @@ public class TestWorldGenerator extends AbstractWorldGenerator<Boolean> {
private void addTiles(ChunkData chunk, Vec3i biw, WorldData world, Random random, boolean isDirt, double height, double grad) {
if (isDirt) addGrass(chunk, biw, world, random);
addDecor(chunk, biw, world, random, isDirt);
addSnow(chunk, biw, world, random, isDirt, height + 1000, grad);
addSnow(chunk, biw, world, random, isDirt, height, grad);
}
private void addGrass(ChunkData chunk, Vec3i biw, WorldData world, Random random) {