1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-20 19:40:18 +02:00

Attempt to fix occasional issue of uninitialized MapBlock data

This commit is contained in:
kwolekr 2015-01-12 22:31:08 -05:00
parent b0efb8f3b2
commit 714a4f8507

View File

@ -2311,7 +2311,7 @@ bool ServerMap::initBlockMake(BlockMakeData *data, v3s16 blockpos)
// Add the area // Add the area
{ {
//TimeTaker timer("initBlockMake() initialEmerge"); //TimeTaker timer("initBlockMake() initialEmerge");
data->vmanip->initialEmerge(bigarea_blocks_min, bigarea_blocks_max, false); data->vmanip->initialEmerge(bigarea_blocks_min, bigarea_blocks_max);
} }
// Ensure none of the blocks to be generated were marked as containing CONTENT_IGNORE // Ensure none of the blocks to be generated were marked as containing CONTENT_IGNORE