Skip to content

Commit

Permalink
change autonroutes
Browse files Browse the repository at this point in the history
  • Loading branch information
team6101 committed Feb 17, 2024
1 parent ddfc865 commit aa9d852
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/auton/AutonRoutes.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
public class AutonRoutes {

public static ArrayDeque<AutonAction> RUN_INTO_WALL_AND_BREAK_ROBOT = new ArrayDeque<>(
List.of(new AutonMoveForward(36), new AutonMoveForward(-36))
List.of(new AutonMoveForward(36))
);
public static ArrayDeque<AutonAction> RUN_INTO_OTHER_WALL_AND_BREAK_ROBOT_AGAIN = new ArrayDeque<>(
List.of(new AutonMoveForward(-36), new AutonMoveForward(36))
List.of(new AutonMoveForward(-36))
);
}

0 comments on commit aa9d852

Please sign in to comment.