Skip to content

Commit fa62375

Browse files
committed
Update at 'Thu Apr 17 10:55:04 EDT 2025'
1 parent 32c8649 commit fa62375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/frc/robot/RobotContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ private void configureBindings() {
298298
))
299299
.onFalse(new InstantCommand(()-> {stopDrive(); joystick.setRumble(RumbleType.kBothRumble, 0);})
300300
.andThen(s_Shooter.stop()));
301-
joystick.button(7).onTrue(new RunCommand(()-> {stopDrive(); System.out.println("STOP");}, drivetrain));
301+
joystick.button(7).onTrue(new RunCommand(()-> {System.out.println("STOP");stopDrive(); }, drivetrain));
302302

303303
joystick.x().whileTrue(Commands.parallel(new DriveToPose(drivetrain,
304304
new Transform2d(Units.inchesToMeters(-33.5/2+0.25), Units.inchesToMeters(13.5+2.25),

0 commit comments

Comments
 (0)