From: Perttu Ahola Date: Thu, 1 Dec 2011 12:48:52 +0000 (+0200) Subject: Fix non-fancy leaves not making faces with water X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=9dcfa882b13cdbe38b66fc1b61643da74f112342;p=zefram%2Fminetest%2Fminetest_engine.git Fix non-fancy leaves not making faces with water --- diff --git a/src/nodedef.cpp b/src/nodedef.cpp index a52a1bbd..cbb3b613 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"));