Skip to content

Commit 8fe21e2

Browse files
Update gradd decoration
1 parent c454f6f commit 8fe21e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/terrain/util/generator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ impl Generator {
7575
}
7676

7777
let mut depth_below_nearest_air = 0;
78-
let depth_check = 5;
78+
let depth_check = 3;
7979

8080
for delta_height in 0..depth_check {
8181
if !Chunk::valid_unpadded(x, y + delta_height, z) {
@@ -93,7 +93,7 @@ impl Generator {
9393

9494
match depth_below_nearest_air {
9595
0_i32..=1_i32 => BlockId::Grass,
96-
2..5 => BlockId::Dirt,
96+
2..3 => BlockId::Dirt,
9797
_ => BlockId::Stone,
9898
}
9999
}

0 commit comments

Comments
 (0)