Skip to content

Commit

Permalink
- fix rotate
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry committed Dec 14, 2017
1 parent f9c8603 commit c43aa76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/MyStrategy.java
Original file line number Diff line number Diff line change
Expand Up @@ -1659,7 +1659,7 @@ private void actualMoveToPoint(VehicleGroupInfo myGroup, Point2D point, Move mov
move.setAction(ActionType.ROTATE);
move.setX(myAverage.getX());
move.setY(myAverage.getY());
move.setAngle((myGroup.shrinkRotateToRight ? Math.PI : -Math.PI) * 0.2f);
move.setAngle((myGroup.shrinkRotateToRight ? Math.PI : -Math.PI) * 0.12f);
myGroup.shrinkRotateToRight = !myGroup.shrinkRotateToRight;
}

Expand Down

0 comments on commit c43aa76

Please sign in to comment.