From f31c7ed40276b7cd50a75af5bd9a652e6e6a2d90 Mon Sep 17 00:00:00 2001 From: 66945 <54561572+66945@users.noreply.github.com> Date: Wed, 15 Mar 2023 09:57:31 -0600 Subject: [PATCH] fixed num --- src/main/java/frc4388/robot/subsystems/SwerveDrive.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {