1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Make minimap respect drawtype = "airlike" (#16251)

This commit is contained in:
Xeno333 2025-06-13 16:33:10 -05:00 committed by GitHub
parent f75d16c1e6
commit 225d2cf916
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -626,7 +626,7 @@ MapBlockMesh::MapBlockMesh(Client *client, MeshMakeData *data):
if (data->m_vmanip.getNodeNoEx(p).getContent() != CONTENT_IGNORE) {
MinimapMapblock *block = new MinimapMapblock;
m_minimap_mapblocks[mesh_grid.getOffsetIndex(ofs)] = block;
block->getMinimapNodes(&data->m_vmanip, p);
block->getMinimapNodes(&data->m_vmanip, data->m_nodedef, p);
}
}
}