Removed hard size limit.

This commit is contained in:
Miroslav Bendík
2012-11-24 18:43:48 +01:00
parent cff944bd2b
commit 5969c61e54
2 changed files with 0 additions and 8 deletions

View File

@ -248,9 +248,6 @@ void TileGenerator::loadBlocks()
if(result == SQLITE_ROW) {
sqlite3_int64 blocknum = sqlite3_column_int64(statement, 0);
BlockPos pos = decodeBlockPos(blocknum);
if (pos.x > SectorXMax || pos.x < SectorXMin || pos.z > SectorZMax || pos.z < SectorZMin) {
continue;
}
if (pos.x < m_xMin) {
m_xMin = pos.x;
}