diff --git a/src/main/java/frc4388/robot/subsystems/SwerveDrive.java b/src/main/java/frc4388/robot/subsystems/SwerveDrive.java index 1f28f3e..44ab39f 100644 --- a/src/main/java/frc4388/robot/subsystems/SwerveDrive.java +++ b/src/main/java/frc4388/robot/subsystems/SwerveDrive.java @@ -56,7 +56,7 @@ public class SwerveDrive extends SubsystemBase { if (fieldRelative) { double rot = 0; - if (rightStick.getNorm() > 0.1) { + if (rightStick.getNorm() > 0.01) { rotTarget = gyro.getRotation2d(); rot = rightStick.getX() * SwerveDriveConstants.ROTATION_SPEED; } else {