From d113fb3cfb38d9af17130efe72a257ccae6743fe Mon Sep 17 00:00:00 2001 From: Meryem Esa Date: Sun, 14 Feb 2016 17:43:11 -0800 Subject: [PATCH] call end in interrupted --- .../usfirst/frc/team3501/robot/commands/driving/TurnForTime.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java b/src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java index a613da8e..21f200c8 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java +++ b/src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java @@ -68,5 +68,6 @@ public class TurnForTime extends Command { @Override protected void interrupted() { + end(); } } -- 2.30.2