From 9a788fe6258bd857a22a0f860c0c70766dcab1da Mon Sep 17 00:00:00 2001 From: moo Date: Mon, 6 Apr 2026 14:48:45 -0700 Subject: [PATCH] fix order --- src/main/java/frc/robot/constants/ShotInterpolation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/frc/robot/constants/ShotInterpolation.java b/src/main/java/frc/robot/constants/ShotInterpolation.java index bf6da5f..1aaf37b 100644 --- a/src/main/java/frc/robot/constants/ShotInterpolation.java +++ b/src/main/java/frc/robot/constants/ShotInterpolation.java @@ -30,8 +30,8 @@ public class ShotInterpolation { exitVelocityMap.put(1.0, 2.2); exitVelocityMap.put(2.0, 4.4); exitVelocityMap.put(7.0, 12.0); - exitVelocityMap.put(7.8, 15.2); exitVelocityMap.put(7.78, 16.8); + exitVelocityMap.put(7.8, 15.2); exitVelocityMap.put(7.9, 17.1); exitVelocityMap.put(8.0, 17.9); exitVelocityMap.put(8.08, 19.0); -- 2.39.5