Don't treat empty map blocks as opaque

(empty map blocks are blocks that have no associated block data
 in the database (which should probably not happen), or that are
 not in the database at all, but that are still queried for some
 reason (which is unlikely))
master
Rogier 2014-05-08 09:45:02 +02:00
parent 5c73495d7b
commit 21b9ffe0a1
1 changed files with 1 additions and 0 deletions

View File

@ -830,6 +830,7 @@ void TileGenerator::renderMap()
for (int i = 0; i < 16; ++i) { for (int i = 0; i < 16; ++i) {
m_readedPixels[i] = 0; m_readedPixels[i] = 0;
} }
allReaded = false;
currentPos = pos; currentPos = pos;
} }
else if (allReaded) { else if (allReaded) {