minor fixes, swerve auto constants

This commit is contained in:
aarav18
2023-01-15 15:58:40 -07:00
parent 7c7d69d61d
commit cd59b42714
2 changed files with 31 additions and 20 deletions
@@ -42,7 +42,7 @@ public class SwerveDrive extends SubsystemBase {
this.leftBack = leftBack;
this.rightBack = rightBack;
this.modules = new SwerveModule[] {leftFront, rightFront, leftBack, rightBack};
this.modules = new SwerveModule[] {this.leftFront, this.rightFront, this.leftBack, this.rightBack};
this.gyro = gyro;
}