mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Attempt to fix flying gravel and dirt
This commit is contained in:
parent
0f7728f84d
commit
c0bd96d9b3
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue