diff options
-rw-r--r-- | src/mapgen_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapgen_v6.cpp b/src/mapgen_v6.cpp index 50126ecf0..732ec0955 100644 --- a/src/mapgen_v6.cpp +++ b/src/mapgen_v6.cpp @@ -1007,7 +1007,7 @@ void MapgenV6::growGrass() // Add surface nodes } else if (bt == BT_TUNDRA) { if (c == c_dirt) { vm->m_data[i] = n_dirt_with_snow; - } else if (c == c_stone) { + } else if (c == c_stone && surface_y < node_max.Y) { vm->m_area.add_y(em, i, 1); vm->m_data[i] = n_snow; } |