1
0

Add new leaves to all classes.

This commit is contained in:
Howaner
2014-03-16 14:01:22 +01:00
committed by madmaxoft
parent 4227066f6d
commit b9fce71bf6
9 changed files with 18 additions and 5 deletions

View File

@@ -1383,6 +1383,13 @@ void cChunkMap::ReplaceTreeBlocks(const sSetBlockVector & a_Blocks)
}
break;
}
case E_BLOCK_NEW_LEAVES:
{
if (itr->BlockType == E_BLOCK_NEW_LOG)
{
Chunk->SetBlock(itr->x, itr->y, itr->z, itr->BlockType, itr->BlockMeta);
}
}
}
} // for itr - a_Blocks[]
}