summaryrefslogtreecommitdiff
path: root/src/mapgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapgen.cpp')
-rw-r--r--src/mapgen.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mapgen.cpp b/src/mapgen.cpp
index f1e109b2d..c2256cedb 100644
--- a/src/mapgen.cpp
+++ b/src/mapgen.cpp
@@ -2222,8 +2222,7 @@ void make_block(BlockMakeData *data)
{
u32 i = data->vmanip->m_area.index(p);
MapNode *n = &data->vmanip->m_data[i];
- if(data->nodedef->get(*n).is_ground_content
- || n->getContent() == LEGN(ndef, "CONTENT_JUNGLETREE"))
+ if(data->nodedef->get(*n).is_ground_content)
{
found = true;
break;