diff --git a/src/environment.cpp b/src/environment.cpp index 93f1627c5..71fceae28 100644 --- a/src/environment.cpp +++ b/src/environment.cpp @@ -929,17 +929,30 @@ void ServerEnvironment::step(float dtime) */ if(n.getContent() == CONTENT_SAPLING) { - if(myrand()%2 == 0) + if(myrand()%50 == 0) { core::map modified_blocks; v3s16 tree_p = p; - MapEditEvent event; - event.type = MEET_OTHER; ManualMapVoxelManipulator vmanip(m_map); v3s16 tree_blockp = getNodeBlockPos(tree_p); vmanip.initialEmerge(tree_blockp - v3s16(1,1,1), tree_blockp + v3s16(1,1,1)); bool is_apple_tree = myrand()%4 == 0; mapgen::make_tree(vmanip, tree_p, is_apple_tree); + vmanip.blitBackAll(&modified_blocks); + + // update lighting + core::map lighting_modified_blocks; + for(core::map::Iterator + i = modified_blocks.getIterator(); + i.atEnd() == false; i++) + { + lighting_modified_blocks.insert(i.getNode()->getKey(), i.getNode()->getValue()); + } + m_map->updateLighting(lighting_modified_blocks, modified_blocks); + + // Send a MEET_OTHER event + MapEditEvent event; + event.type = MEET_OTHER; for(core::map::Iterator i = modified_blocks.getIterator(); i.atEnd() == false; i++)