mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Don't predict placement of nodes if they would replace a non buildable_to node
This commit is contained in:
parent
777ac58f85
commit
a031a15487
1 changed files with 2 additions and 0 deletions
|
@ -808,6 +808,8 @@ void nodePlacementPrediction(Client &client,
|
|||
MapNode n_under = map.getNode(nodepos);
|
||||
if(nodedef->get(n_under).buildable_to)
|
||||
p = nodepos;
|
||||
else if (!nodedef->get(map.getNode(p)).buildable_to)
|
||||
return;
|
||||
}catch(InvalidPositionException &e){}
|
||||
// Find id of predicted node
|
||||
content_t id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue