1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

Don't predict placement of nodes if they would replace a non buildable_to node

This commit is contained in:
ShadowNinja 2013-04-20 17:01:02 -04:00 committed by PilzAdam
parent 777ac58f85
commit a031a15487

View File

@ -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;