Skip to content

Commit

Permalink
made Straight Auto the default
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTinker64 committed Jan 10, 2024
1 parent 6e6e4ab commit 8df6f87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public RobotContainer() {
configureBindings();

// Add commands to the autonomous command chooser
m_chooser.setDefaultOption("Complex Auto", m_complexAuto);
m_chooser.setDefaultOption("Straight Auto", m_straightAuto);

m_chooser.addOption("Straight Auto", m_straightAuto);
m_chooser.addOption("Complex Auto", m_complexAuto);

m_chooser.addOption("Circle Auto", m_circleAuto);

Expand Down

0 comments on commit 8df6f87

Please sign in to comment.