Attempt to fix flying gravel and dirt
parent
0f7728f84d
commit
c0bd96d9b3
|
@ -1761,8 +1761,9 @@ void make_block(BlockMakeData *data)
|
||||||
vmanip.m_data[i] = airnode;
|
vmanip.m_data[i] = airnode;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Don't replace air or water or lava
|
// Don't replace air or water or lava or ignore
|
||||||
if(vmanip.m_data[i].getContent() == CONTENT_AIR ||
|
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_water_source ||
|
||||||
vmanip.m_data[i].getContent() == c_lava_source)
|
vmanip.m_data[i].getContent() == c_lava_source)
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue