Skip to content

Commit f4d318f

Browse files
committed
honestly all scoring should should all cancel self to be safe
1 parent 0fc9511 commit f4d318f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/frc/team5115/commands/DriveCommands.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static Command quickScore(Dispenser dispenser, Arm arm, Drivetrain drivet
4141
dispenser.stop(),
4242
drivetrain.alignPoseA(),
4343
arm.stow())
44-
.withInterruptBehavior(InterruptionBehavior.kCancelIncoming);
44+
.withInterruptBehavior(InterruptionBehavior.kCancelSelf);
4545
}
4646

4747
public static Command stackSequence(Dispenser dispenser, Arm arm) {
@@ -53,7 +53,7 @@ public static Command stackSequence(Dispenser dispenser, Arm arm) {
5353
Commands.waitSeconds(2.0),
5454
dispenser.stop(),
5555
arm.stow())
56-
.withInterruptBehavior(InterruptionBehavior.kCancelIncoming);
56+
.withInterruptBehavior(InterruptionBehavior.kCancelSelf);
5757
}
5858

5959
public static Command intakeUntilCanister(Dispenser dispenser, Arm arm) {

0 commit comments

Comments
 (0)