Skip to content

Commit fe534d9

Browse files
committedJul 8, 2014
Fix #2
1 parent 4076903 commit fe534d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎TileGenerator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ inline void TileGenerator::renderMapBlock(const ustring &mapBlock, const BlockPo
504504
col = c;
505505
else
506506
col = mixColors(col, c);
507-
if(col.a == 0xFF) {
507+
if(col.a == 0xFF || y == minY) {
508508
m_image->tpixels[imageY][imageX] = color2int(col);
509509
m_blockPixelAttributes.attribute(15 - z, xBegin + x).thicken = th;
510510
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.