diff --git a/src/main/deploy/pathplanner/autos/cmp.center.4.auto b/src/main/deploy/pathplanner/autos/cmp.center.4.auto index 8a54441..2c2a762 100644 --- a/src/main/deploy/pathplanner/autos/cmp.center.4.auto +++ b/src/main/deploy/pathplanner/autos/cmp.center.4.auto @@ -14,7 +14,7 @@ { "type": "named", "data": { - "name": "shootNoPull" + "name": "shoot" } }, { diff --git a/src/main/java/frc/robot/superstructure/Superstructure.java b/src/main/java/frc/robot/superstructure/Superstructure.java index 321d968..0df8a52 100644 --- a/src/main/java/frc/robot/superstructure/Superstructure.java +++ b/src/main/java/frc/robot/superstructure/Superstructure.java @@ -170,7 +170,9 @@ private Command shoot(SuperstructureState shot) { } private Command shootNoPull(SuperstructureState shot) { - return ready(shot).andThen(hold(shot)); + return ready(shot) + .andThen(Commands.waitSeconds(SuperstructureConstants.READY_PAUSE_DURATION)) + .andThen(hold(shot)); } public Command subwooferNoPull() {