This commit is contained in:
Gered 2013-10-20 12:48:24 -04:00
parent df6c49e94e
commit 733e1ee751

View file

@ -117,7 +117,7 @@ public class ChunkVertexGenerator {
if (currentTileMesh.alpha && adjacentTileMesh.alpha && currentTile.tile == adjacentTile.tile && color.a < 1.0f) if (currentTileMesh.alpha && adjacentTileMesh.alpha && currentTile.tile == adjacentTile.tile && color.a < 1.0f)
return false; return false;
if (!adjacentTileMesh.isOpaque(adjacentFace)) if (adjacentTileMesh.isOpaque(adjacentFace) == false)
return true; return true;
return false; return false;