diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index 04874d3b..0666b190 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -686,8 +686,9 @@ private void configureBindings() { public Command getAutonomousCommand() { return AutoBuilder.buildAuto(autonValue).alongWith( new ShooterFlywheelReadyCommand(shooterFlywheelSubsystem, lightBarSubsystem), - new InstantCommand(() -> {shooterPivotSubsystem.setAutoAimBoolean(true);}), - new IntakePivotSetPositionCommand(intakePivotSubsystem, 1) + new InstantCommand(() -> shooterPivotSubsystem.setAutoAimBoolean(true)), + new IntakePivotSetPositionCommand(intakePivotSubsystem, 1), + new ClimbLowerCommand(climbSubsystem) ); } } \ No newline at end of file