Gears now back to semi-working

This commit is contained in:
Calclavia 2014-01-20 23:22:19 +08:00
parent f64b157544
commit 3dcd8fdc2f

View file

@ -47,7 +47,7 @@ public class PathfinderRotationManager extends ConnectionPathfinder<IMechanical>
currentNode.getNetwork().setPower(0, 0);
}
currentIsClockwise = (node.isRotationInversed()) ? !currentNode.isClockwise() : currentNode.isClockwise();
currentIsClockwise = (node.isRotationInversed() && currentNode.isRotationInversed()) ? !currentNode.isClockwise() : currentNode.isClockwise();
findNodes(node);
}
}