summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-12-01 14:48:52 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-12-01 14:48:52 +0200
commit9dcfa882b13cdbe38b66fc1b61643da74f112342 (patch)
tree1a67c36a02357c62f8a97b1ecc9a3bc081546bf0 /src
parentcb589b1f997a3017908ed6b9b1b641732b303de8 (diff)
downloadminetest-9dcfa882b13cdbe38b66fc1b61643da74f112342.tar.gz
minetest-9dcfa882b13cdbe38b66fc1b61643da74f112342.tar.bz2
minetest-9dcfa882b13cdbe38b66fc1b61643da74f112342.zip
Fix non-fancy leaves not making faces with water
Diffstat (limited to 'src')
-rw-r--r--src/nodedef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nodedef.cpp b/src/nodedef.cpp
index a52a1bbd4..cbb3b6130 100644
--- a/src/nodedef.cpp
+++ b/src/nodedef.cpp
@@ -530,7 +530,7 @@ public:
f->visual_solidness = 1;
} else {
f->drawtype = NDT_NORMAL;
- f->solidness = 1;
+ f->solidness = 2;
for(u32 i=0; i<6; i++){
f->setTexture(i, f->tname_tiles[i]
+ std::string("^[noalpha"));