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
1 changed files with 2 additions and 0 deletions

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;