Skip to content

Commit

Permalink
Didn't mean to change that
Browse files Browse the repository at this point in the history
  • Loading branch information
WispySparks committed Oct 10, 2024
1 parent 7f7da3b commit 84388cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/Swerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public Command driveCommand(DoubleSupplier TranslationX, DoubleSupplier Translat
return runOnce(() -> drive(
new Translation2d(TranslationX.getAsDouble() * swerveDrive.getMaximumVelocity(), TranslationY.getAsDouble() * swerveDrive.getMaximumVelocity()),
angularVelocity.getAsDouble() * swerveDrive.getMaximumAngularVelocity(),
true, true));
true, false));
}

public Command turnCommand(Measure<Angle> targetAngle, Measure<Angle> currentAngle, boolean fieldRelative) {
Expand Down

0 comments on commit 84388cb

Please sign in to comment.