From 96e2931c5c154262566359495d4a0b8515376947 Mon Sep 17 00:00:00 2001 From: kwolekr Date: Sun, 7 Apr 2013 02:26:46 -0400 Subject: Fix black tree leaves, reduce above-ground cave shadows --- src/mapgen_v6.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mapgen_v6.cpp') diff --git a/src/mapgen_v6.cpp b/src/mapgen_v6.cpp index 275d4b78f..4a037bb85 100644 --- a/src/mapgen_v6.cpp +++ b/src/mapgen_v6.cpp @@ -471,7 +471,8 @@ void MapgenV6::makeChunk(BlockMakeData *data) { } // Calculate lighting - calcLighting(node_min, node_max); + calcLighting(node_min - v3s16(1, 1, 1) * MAP_BLOCKSIZE, + node_max + v3s16(1, 0, 1) * MAP_BLOCKSIZE); this->generating = false; } -- cgit v1.2.3