Skip to content

Commit 6152e3b

Browse files
committed
Fixed in-progress shooter cmd
1 parent 3a1c8f8 commit 6152e3b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/frc/robot/subsystems/shooter/Shooter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import edu.wpi.first.wpilibj.DriverStation;
2020
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
2121
import edu.wpi.first.wpilibj2.command.Command;
22+
import edu.wpi.first.wpilibj2.command.Commands;
2223
import edu.wpi.first.wpilibj2.command.SubsystemBase;
2324
import frc.robot.Constants;
2425

@@ -72,7 +73,7 @@ public Command shootCMD(double newTargetRPM){
7273
* once it reaches speed, activate the kicker wheel.
7374
* then it stops both
7475
*/
75-
76+
return Commands.none();
7677

7778
}
7879
public Command PIDCMD(double newTargetRPM) {

0 commit comments

Comments
 (0)