Skip to content

Commit

Permalink
Attempt to fix occasional issue of uninitialized MapBlock data
Browse files Browse the repository at this point in the history
  • Loading branch information
kwolekr committed Jan 13, 2015
1 parent b0efb8f commit 714a4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map.cpp
Expand Up @@ -2311,7 +2311,7 @@ bool ServerMap::initBlockMake(BlockMakeData *data, v3s16 blockpos)
// Add the area
{
//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
Expand Down

0 comments on commit 714a4f8

Please sign in to comment.