Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7f4856d

Browse files
numberZerosfan5
authored andcommittedJan 30, 2018
Ignore visual_solidness, it's useless
1 parent aa4aecd commit 7f4856d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/content_mapblock.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ void MapblockMeshGenerator::prepareLiquidNodeDrawing()
392392
draw_bottom = (nbottom.getContent() != c_flowing) && (nbottom.getContent() != c_source);
393393
if (draw_bottom && (nbottom.getContent() != CONTENT_AIR)) {
394394
const ContentFeatures &f2 = nodedef->get(nbottom.getContent());
395-
if ((f2.solidness > 1) || (f2.visual_solidness > 1))
395+
if (f2.solidness > 1)
396396
draw_bottom = false;
397397
}
398398

0 commit comments

Comments
 (0)
Please sign in to comment.