Gears now back to semi-working
This commit is contained in:
parent
f64b157544
commit
3dcd8fdc2f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue