Fix use of uninitialized data

master
Craig Robbins 2015-01-14 15:43:33 +10:00
parent a4a6cc8eb1
commit 57f2fa57cd
1 changed files with 1 additions and 2 deletions

View File

@ -3660,8 +3660,7 @@ void MMVManip::initialEmerge(v3s16 blockpos_min, v3s16 blockpos_max,
block = svrmap->emergeBlock(p, false);
if (block == NULL)
block = svrmap->createBlock(p);
else
block->copyTo(*this);
block->copyTo(*this);
} else {
flags |= VMANIP_BLOCK_DATA_INEXIST;