Fix black display inside opaque water

Opaque water's solidness was being set to 2, like a normal node.
When you swim, it is treated like a solid block, and the display
goes black.  Setting it to 1 like transparent water allows you to
see.

It looks somewhat awkward when you swim, look up, and see an opaque
wall of water (the surface), but there isn't much that can be done
about it.  If you made the water transparent so it looked good,
it would defeat the purpose :) .
This commit is contained in:
Matthew I 2012-07-28 21:41:32 -04:00 committed by Perttu Ahola
parent 0b1ab41a95
commit 1d7408a7b8
1 changed files with 0 additions and 2 deletions

View File

@ -556,8 +556,6 @@ public:
f->solidness = 0;
} else {
f->solidness = 1;
if(f->alpha == 255)
f->solidness = 2;
f->backface_culling = false;
}
break;