Skip to content

Commit

Permalink
fix grass in a residential area
Browse files Browse the repository at this point in the history
  • Loading branch information
V14es authored Mar 2, 2025
1 parent a969d65 commit 6b7144f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/element_processing/landuse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ pub fn generate_landuse(
editor.set_block(block_type, x, ground_level + 1, z, None, None);
} else if landuse_tag == "construction" || landuse_tag == "railway" {
editor.set_block(block_type, x, ground_level, z, None, Some(&[SPONGE]));
} else if landuse_tag == "grass" {
editor.set_block(block_type, x, ground_level, z, None, Some(&[SPONGE]));
} else {
editor.set_block(block_type, x, ground_level, z, None, None);
}
Expand Down

0 comments on commit 6b7144f

Please sign in to comment.