fixed bug in path builder, close #1490

This commit is contained in:
SpaceToad 2014-03-15 17:37:33 +01:00
parent 31d95c9e4e
commit 63d4a5a055

View file

@ -84,7 +84,7 @@ public class TileBuilder extends TileBuildCraft implements IBuilderInventory, IM
currentIterator = it;
double dx = to.x - from.z;
double dx = to.x - from.x;
double dy = to.y - from.y;
double dz = to.z - from.z;