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-Tag: 0.4.dev-20111202-1~25 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9dcfa882b13cdbe38b66fc1b61643da74f112342;p=oweals%2Fminetest.git Fix non-fancy leaves not making faces with water --- 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"));