Attempt to fix flying gravel and dirt

This commit is contained in:
Perttu Ahola 2012-09-01 13:41:15 +03:00
parent 0f7728f84d
commit c0bd96d9b3
1 changed files with 3 additions and 2 deletions

View File

@ -1761,8 +1761,9 @@ void make_block(BlockMakeData *data)
vmanip.m_data[i] = airnode;
}
} else {
// Don't replace air or water or lava
if(vmanip.m_data[i].getContent() == CONTENT_AIR ||
// Don't replace air or water or lava or ignore
if(vmanip.m_data[i].getContent() == CONTENT_IGNORE ||
vmanip.m_data[i].getContent() == CONTENT_AIR ||
vmanip.m_data[i].getContent() == c_water_source ||
vmanip.m_data[i].getContent() == c_lava_source)
continue;