summaryrefslogtreecommitdiff
path: root/src/mapgen_v6.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapgen_v6.cpp')
-rw-r--r--src/mapgen_v6.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mapgen_v6.cpp b/src/mapgen_v6.cpp
index b97512535..3d9f4c517 100644
--- a/src/mapgen_v6.cpp
+++ b/src/mapgen_v6.cpp
@@ -534,7 +534,7 @@ void MapgenV6::makeChunk(BlockMakeData *data)
}
// Add top and bottom side of water to transforming_liquid queue
- updateLiquid(&data->transforming_liquid, full_node_min, full_node_max);
+ //updateLiquid(&data->transforming_liquid, full_node_min, full_node_max);
// Grow grass
growGrass();
@@ -551,8 +551,7 @@ void MapgenV6::makeChunk(BlockMakeData *data)
// Calculate lighting
if (flags & MG_LIGHT)
- calcLighting(node_min - v3s16(1, 1, 1) * MAP_BLOCKSIZE,
- node_max + v3s16(1, 0, 1) * MAP_BLOCKSIZE);
+ calcLighting(node_min, node_max);
this->generating = false;
}