Skip to content

Commit

Permalink
fixed toggle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
PGgit08 committed Dec 15, 2024
1 parent 97c2b96 commit 0629ef4
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/main/java/frc/robot/subsystems/Swerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -318,11 +318,6 @@ public Command drive(InputStream velX, InputStream velY, InputStream velOmega) {
return run(() -> {
drive(velX.get(), velY.get(), velOmega.get());
})
.beforeStarting(
() -> {
_isFieldOriented = true;
_isOpenLoop = false;
})
.withName("Drive");
}

Expand Down

0 comments on commit 0629ef4

Please sign in to comment.