diff options
Diffstat (limited to 'src/content_mapblock.cpp')
-rw-r--r-- | src/content_mapblock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content_mapblock.cpp b/src/content_mapblock.cpp index 577fbc5f8..4e32e27ca 100644 --- a/src/content_mapblock.cpp +++ b/src/content_mapblock.cpp @@ -276,7 +276,7 @@ void MapblockMeshGenerator::drawCuboid(const aabb3f &box, void MapblockMeshGenerator::getSmoothLightFrame() { for (int k = 0; k < 8; ++k) { - u16 light = getSmoothLight(blockpos_nodes + p, light_dirs[k], data); + u16 light = getSmoothLightTransparent(blockpos_nodes + p, light_dirs[k], data); frame.lightsA[k] = light & 0xff; frame.lightsB[k] = light >> 8; } |