From 5fcd2750b4c9cf231afc37401f79ae4b9be85094 Mon Sep 17 00:00:00 2001 From: Antoine PerreaultE Date: Thu, 29 Feb 2024 19:30:12 -0500 Subject: [PATCH] --- src/main/java/frc/robot/subsystem/Drive.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/frc/robot/subsystem/Drive.java b/src/main/java/frc/robot/subsystem/Drive.java index 54f1d3f..10771e4 100644 --- a/src/main/java/frc/robot/subsystem/Drive.java +++ b/src/main/java/frc/robot/subsystem/Drive.java @@ -28,7 +28,7 @@ public class Drive extends SubsystemBase { public AHRS Gyro = new AHRS(); public void drive(double x, double y, double zRotation){ - swerveDrive.drive(new Translation2d(x*5, y*5), zRotation*4, true, false); + swerveDrive.drive(new Translation2d(x*5, y*5), zRotation*4, false, false); } public Drive() {